Skip to content

Commit

Permalink
[Phpunit] fixed support for PHP 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Mar 22, 2019
1 parent 9ee5248 commit 606b8af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Symfony/Bridge/PhpUnit/bin/simple-phpunit
Expand Up @@ -44,11 +44,11 @@ if ('phpdbg' === PHP_SAPI) {
$PHP .= ' -qrr';
}

$defaultEnvs = [
$defaultEnvs = array(
'COMPOSER' => 'composer.json',
'COMPOSER_VENDOR_DIR' => 'vendor',
'COMPOSER_BIN_DIR' => 'bin',
];
);

foreach ($defaultEnvs as $envName => $envValue) {
if ($envValue !== getenv($envName)) {
Expand Down

0 comments on commit 606b8af

Please sign in to comment.