Skip to content

Commit

Permalink
CS
Browse files Browse the repository at this point in the history
  • Loading branch information
j0k3r committed Jan 4, 2024
1 parent 14cb04e commit ebc2c26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/console-application.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
*/
require dirname(__DIR__) . '/tests/bootstrap.php';

$kernel = new \App\Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
$kernel = new App\Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);

return new \Symfony\Bundle\FrameworkBundle\Console\Application($kernel);
return new Symfony\Bundle\FrameworkBundle\Console\Application($kernel);
2 changes: 1 addition & 1 deletion tests/object-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require dirname(__DIR__) . '/tests/bootstrap.php';

$kernel = new \App\Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
$kernel = new App\Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
$kernel->boot();

return $kernel->getContainer()->get('doctrine')->getManager();

0 comments on commit ebc2c26

Please sign in to comment.