Mercurial > hg > cmmr2012-drupal-site
comparison vendor/symfony/console/Tester/ApplicationTester.php @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | a9cd425dd02b |
children |
comparison
equal
deleted
inserted
replaced
4:a9cd425dd02b | 5:12f9dff5fda9 |
---|---|
64 $this->input = new ArrayInput($input); | 64 $this->input = new ArrayInput($input); |
65 if (isset($options['interactive'])) { | 65 if (isset($options['interactive'])) { |
66 $this->input->setInteractive($options['interactive']); | 66 $this->input->setInteractive($options['interactive']); |
67 } | 67 } |
68 | 68 |
69 $this->captureStreamsIndependently = array_key_exists('capture_stderr_separately', $options) && $options['capture_stderr_separately']; | 69 $this->captureStreamsIndependently = \array_key_exists('capture_stderr_separately', $options) && $options['capture_stderr_separately']; |
70 if (!$this->captureStreamsIndependently) { | 70 if (!$this->captureStreamsIndependently) { |
71 $this->output = new StreamOutput(fopen('php://memory', 'w', false)); | 71 $this->output = new StreamOutput(fopen('php://memory', 'w', false)); |
72 if (isset($options['decorated'])) { | 72 if (isset($options['decorated'])) { |
73 $this->output->setDecorated($options['decorated']); | 73 $this->output->setDecorated($options['decorated']); |
74 } | 74 } |