Skip to content

Commit b8d6eff

Browse files
Merge branch '5.1' into 5.2
* 5.1: µCS fix CS fix CS fix [travis] use PHP 8.0 to patch return types and run deps=low Add me as a Notifier code owner Update sl_SI translations Don't trigger deprecation for deprecated aliases pointing to deprecated definitions [HttpFoundation] use atomic writes in MockFileSessionStorage Make EmailMessage & SmsMessage transport nullable remove unused argument [DI] fix param annotation [Config] Add \Symfony\Component\Config\Loader::load() return type Simplify PHP CS Fixer config Rename normalize param
2 parents 68c1306 + 9ee12c5 commit b8d6eff

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
@@ -1485,8 +1485,8 @@ private function resetProcessData()
14851485
$this->exitcode = null;
14861486
$this->fallbackStatus = [];
14871487
$this->processInformation = null;
1488-
$this->stdout = fopen('php://temp/maxmemory:'.(1024 * 1024), 'w+b');
1489-
$this->stderr = fopen('php://temp/maxmemory:'.(1024 * 1024), 'w+b');
1488+
$this->stdout = fopen('php://temp/maxmemory:'.(1024 * 1024), 'w+');
1489+
$this->stderr = fopen('php://temp/maxmemory:'.(1024 * 1024), 'w+');
14901490
$this->process = null;
14911491
$this->latestSignal = null;
14921492
$this->status = self::STATUS_READY;

0 commit comments

Comments
 (0)