Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/console/Output/ConsoleOutput.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 1fec387a4317 |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
119 * | 119 * |
120 * @return bool | 120 * @return bool |
121 */ | 121 */ |
122 private function isRunningOS400() | 122 private function isRunningOS400() |
123 { | 123 { |
124 $checks = array( | 124 $checks = [ |
125 function_exists('php_uname') ? php_uname('s') : '', | 125 \function_exists('php_uname') ? php_uname('s') : '', |
126 getenv('OSTYPE'), | 126 getenv('OSTYPE'), |
127 PHP_OS, | 127 PHP_OS, |
128 ); | 128 ]; |
129 | 129 |
130 return false !== stripos(implode(';', $checks), 'OS400'); | 130 return false !== stripos(implode(';', $checks), 'OS400'); |
131 } | 131 } |
132 | 132 |
133 /** | 133 /** |