Skip to content

Commit

Permalink
chore: drop configuration for Symfony 4
Browse files Browse the repository at this point in the history
  • Loading branch information
alexislefebvre committed Jan 7, 2024
1 parent 6986624 commit 3ae6ce6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 19 deletions.
9 changes: 2 additions & 7 deletions tests/App/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,8 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
{
$loader->load(__DIR__.'/config.yml');

if (Kernel::MAJOR_VERSION >= 5) {
$loader->load(__DIR__.'/security_5.yml');
$loader->load(__DIR__.'/session_5.yml');
} else {
$loader->load(__DIR__.'/security_4.yml');
$loader->load(__DIR__.'/session_4.yml');
}
$loader->load(__DIR__.'/security_5.yml');
$loader->load(__DIR__.'/session_5.yml');
}

public function getCacheDir(): string
Expand Down
6 changes: 0 additions & 6 deletions tests/App/security_4.yml

This file was deleted.

6 changes: 0 additions & 6 deletions tests/App/session_4.yml

This file was deleted.

0 comments on commit 3ae6ce6

Please sign in to comment.