Merge branch '2.7' into 2.8

* 2.7:
  use PHP_OS instead of php_uname('s')
This commit is contained in:
Fabien Potencier 2015-10-02 16:08:20 +02:00
commit 1805649181

View File

@ -125,7 +125,7 @@ class ConsoleOutput extends StreamOutput implements ConsoleOutputInterface
*/
private function isRunningOS400()
{
return 'OS400' === php_uname('s');
return 'OS400' === PHP_OS;
}
/**