Skip to content

Commit 3411cf9

Browse files
Merge branch '6.4' into 7.0
* 6.4: [Process] remove fixing of legacy bug, when PTS functionality is enabled DX: re-apply self_accessor and phpdoc_types_order by PHP CS Fixer [HttpClient] Psr18Client: parse HTTP Reason Phrase for Response fix test Fix wrong yaml parse null test [AssetMapper] Fixing merge from multiple PR's Bump Symfony version to 5.4.31 Update VERSION for 5.4.30 Update CONTRIBUTORS for 5.4.30 Update CHANGELOG for 5.4.30 Fix wrong merge [AssetMapper] Allowing circular references in JavaScriptImportPathCompiler [AssetMapper] Fix file deleting errors & remove nullable MappedAsset on JS import [Lock] Fix mongodb extension requirement in tests [Yaml] Remove dead code [AssetMapper] Fix in-file imports to resolve via filesystem throw better exception in TranslatableNormalizer, add to changelog Passing null to Inline::parse is not allowed Fix passing null to trim()
2 parents acdafc7 + 12f9ebe commit 3411cf9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Process.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -327,10 +327,6 @@ public function start(callable $callback = null, array $env = []): void
327327
// See https://unix.stackexchange.com/questions/71205/background-process-pipe-input
328328
$commandline = '{ ('.$commandline.') <&3 3<&- 3>/dev/null & } 3<&0;';
329329
$commandline .= 'pid=$!; echo $pid >&3; wait $pid 2>/dev/null; code=$?; echo $code >&3; exit $code';
330-
331-
// Workaround for the bug, when PTS functionality is enabled.
332-
// @see : https://bugs.php.net/69442
333-
$ptsWorkaround = fopen(__FILE__, 'r');
334330
}
335331

336332
$envPairs = [];

0 commit comments

Comments
 (0)