Skip to content

Commit

Permalink
Fix psalm build (#1656)
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Jul 22, 2023
1 parent bfbd9d5 commit 18423c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/App/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@ protected function configureRoutes(RoutingConfigurator $routes): void
$routes->import(__DIR__.'/config/routes.yaml');
}

/**
* @psalm-suppress DeprecatedClass
*/
protected function configureContainer(ContainerBuilder $container, LoaderInterface $loader): void
{
$loader->load(__DIR__.'/config/config.yaml');
Expand All @@ -91,6 +88,9 @@ protected function configureContainer(ContainerBuilder $container, LoaderInterfa
$loader->load(__DIR__.'/config/config_sf5.yaml');
}

/*
* TODO: Remove when dropping support for sonatablock 4
*/
if (class_exists(HttpCacheHandler::class)) {
$loader->load(__DIR__.'/config/config_sonata_block_v4.yaml');
}
Expand Down

0 comments on commit 18423c0

Please sign in to comment.