From e9c4ef4f848b04efc5bcd070f8bcede59d637d5c Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 14 Jan 2021 16:08:15 +0100 Subject: [PATCH] CS fix --- Process.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Process.php b/Process.php index 244d0c04..70e97d18 100644 --- a/Process.php +++ b/Process.php @@ -1497,8 +1497,8 @@ private function resetProcessData() $this->exitcode = null; $this->fallbackStatus = []; $this->processInformation = null; - $this->stdout = fopen('php://temp/maxmemory:'.(1024 * 1024), 'w+b'); - $this->stderr = fopen('php://temp/maxmemory:'.(1024 * 1024), 'w+b'); + $this->stdout = fopen('php://temp/maxmemory:'.(1024 * 1024), 'w+'); + $this->stderr = fopen('php://temp/maxmemory:'.(1024 * 1024), 'w+'); $this->process = null; $this->latestSignal = null; $this->status = self::STATUS_READY;