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
This commit is contained in:
jgonzalezlopez 2014-06-18 13:43:36 +02:00
parent 5febbb27f5
commit 7bb98e2146

View File

@ -40,7 +40,7 @@ class WindowsPipes extends AbstractPipes
public function __construct($disableOutput, $input) public function __construct($disableOutput, $input)
{ {
$this->$disableOutput = (bool) $disableOutput; $this->disableOutput = (bool) $disableOutput;
if (!$this->disableOutput) { if (!$this->disableOutput) {
// Fix for PHP bug #51800: reading from STDOUT pipe hangs forever on Windows if the output is too big. // Fix for PHP bug #51800: reading from STDOUT pipe hangs forever on Windows if the output is too big.