Skip to content

Commit

Permalink
Merge pull request #1197 from j0k3r/dependabot/composer/friendsofphp/…
Browse files Browse the repository at this point in the history
…php-cs-fixer-3.46.0

Bump friendsofphp/php-cs-fixer from 3.45.0 to 3.46.0
  • Loading branch information
j0k3r committed Jan 4, 2024
2 parents 19e03ad + ebc2c26 commit 1a40dd8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
13 changes: 7 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 1a40dd8

Please sign in to comment.