From 7f89158a0d488828f511150391b038bb6ecc4bbe Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Mon, 18 Jan 2016 18:32:04 +0100 Subject: [PATCH] [Process] Fix typo, no arguments needed anymore --- src/Symfony/Component/Process/Process.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Process/Process.php b/src/Symfony/Component/Process/Process.php index df36fd581d..6660950b7a 100644 --- a/src/Symfony/Component/Process/Process.php +++ b/src/Symfony/Component/Process/Process.php @@ -1232,7 +1232,7 @@ class Process $this->processPipes = UnixPipes::create($this, $this->input); } - return $this->processPipes->getDescriptors($this->outputDisabled); + return $this->processPipes->getDescriptors(); } /**