Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/process/Pipes/WindowsPipes.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
24 * | 24 * |
25 * @internal | 25 * @internal |
26 */ | 26 */ |
27 class WindowsPipes extends AbstractPipes | 27 class WindowsPipes extends AbstractPipes |
28 { | 28 { |
29 /** @var array */ | |
30 private $files = array(); | 29 private $files = array(); |
31 /** @var array */ | |
32 private $fileHandles = array(); | 30 private $fileHandles = array(); |
33 /** @var array */ | |
34 private $readBytes = array( | 31 private $readBytes = array( |
35 Process::STDOUT => 0, | 32 Process::STDOUT => 0, |
36 Process::STDERR => 0, | 33 Process::STDERR => 0, |
37 ); | 34 ); |
38 /** @var bool */ | |
39 private $haveReadSupport; | 35 private $haveReadSupport; |
40 | 36 |
41 public function __construct($input, $haveReadSupport) | 37 public function __construct($input, $haveReadSupport) |
42 { | 38 { |
43 $this->haveReadSupport = (bool) $haveReadSupport; | 39 $this->haveReadSupport = (bool) $haveReadSupport; |