From 7bb98e2146fc6c66c14dead1fe79536f5742d03c Mon Sep 17 00:00:00 2001 From: jgonzalezlopez Date: Wed, 18 Jun 2014 13:43:36 +0200 Subject: [PATCH] Update WindowsPipes.php This file has made that my assetic had an error, the property assignment have an extra "$" that it mustn't be present. Please correct it --- src/Symfony/Component/Process/Pipes/WindowsPipes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Process/Pipes/WindowsPipes.php b/src/Symfony/Component/Process/Pipes/WindowsPipes.php index e90073c43b..257c265da9 100644 --- a/src/Symfony/Component/Process/Pipes/WindowsPipes.php +++ b/src/Symfony/Component/Process/Pipes/WindowsPipes.php @@ -40,7 +40,7 @@ class WindowsPipes extends AbstractPipes public function __construct($disableOutput, $input) { - $this->$disableOutput = (bool) $disableOutput; + $this->disableOutput = (bool) $disableOutput; if (!$this->disableOutput) { // Fix for PHP bug #51800: reading from STDOUT pipe hangs forever on Windows if the output is too big.