Skip to content

Commit

Permalink
Fix psalm (#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Oct 30, 2022
1 parent f08aebe commit 12e84f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/custom_bootstrap.php
Expand Up @@ -17,7 +17,7 @@
use Symfony\Component\Console\Output\NullOutput;
use Symfony\Component\Filesystem\Filesystem;

$kernel = new AppKernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
$kernel = new AppKernel($_SERVER['APP_ENV'] ?? 'test', (bool) ($_SERVER['APP_DEBUG'] ?? false));
$application = new Application($kernel);
$application->setAutoExit(false);

Expand Down

0 comments on commit 12e84f7

Please sign in to comment.