Skip to content

Commit 9ee12c5

Browse files
Merge branch '4.4' into 5.1
* 4.4: CS fix [travis] use PHP 8.0 to patch return types and run deps=low Update sl_SI translations Don't trigger deprecation for deprecated aliases pointing to deprecated definitions [HttpFoundation] use atomic writes in MockFileSessionStorage [DI] fix param annotation [Config] Add \Symfony\Component\Config\Loader::load() return type Simplify PHP CS Fixer config Rename normalize param
2 parents fdd3107 + e9c4ef4 commit 9ee12c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Process.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1457,8 +1457,8 @@ private function resetProcessData()
14571457
$this->exitcode = null;
14581458
$this->fallbackStatus = [];
14591459
$this->processInformation = null;
1460-
$this->stdout = fopen('php://temp/maxmemory:'.(1024 * 1024), 'w+b');
1461-
$this->stderr = fopen('php://temp/maxmemory:'.(1024 * 1024), 'w+b');
1460+
$this->stdout = fopen('php://temp/maxmemory:'.(1024 * 1024), 'w+');
1461+
$this->stderr = fopen('php://temp/maxmemory:'.(1024 * 1024), 'w+');
14621462
$this->process = null;
14631463
$this->latestSignal = null;
14641464
$this->status = self::STATUS_READY;

0 commit comments

Comments
 (0)