Skip to content

Commit c8b5404

Browse files
committed
Merge branch '7.1' into 7.2
* 7.1: [TwigBridge] Remove `VersionAwareTest` from `AbstractLayoutTestCase` [DependencyInjection] Add coverage for error cases of `LazyClosure` and `AutowireLocator` [TwigBridge] Fixed a parameterized choice label translation Fix extracting of message from ->trans() method with named params [TwigBridge] Remove usage of Node() instantiations Update security.bg.xlf [Dotenv] Default value can be empty [Emoji] Update data to support emoji 16 Add missing Albanian translations for Security and Validator components [HttpClient] Add `crypto_method` to scoped client options suppress proc_open errors [DependencyInjection] Fix `XmlFileLoader` not respecting when env for services
2 parents dfd8158 + a978f01 commit c8b5404

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Terminal.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ private static function readFromProcess(string|array $command): ?string
209209

210210
$cp = \function_exists('sapi_windows_cp_set') ? sapi_windows_cp_get() : 0;
211211

212-
if (!$process = proc_open($command, $descriptorspec, $pipes, null, null, ['suppress_errors' => true])) {
212+
if (!$process = @proc_open($command, $descriptorspec, $pipes, null, null, ['suppress_errors' => true])) {
213213
return null;
214214
}
215215

0 commit comments

Comments
 (0)