Skip to content
This repository was archived by the owner on Jan 8, 2024. It is now read-only.

Commit ef6ef4a

Browse files
committed
Fixed deprecations
1 parent d779ad8 commit ef6ef4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Functional/App/Kernel.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ protected function configureContainer(ContainerBuilder $container, LoaderInterfa
6363
protected function configureRoutes(RouteCollectionBuilder $routes)
6464
{
6565
$routes->add('/', CacheController::class . ':index');
66-
$routes->add('/cache-test', CacheController::class . ':cacheTest');
67-
$routes->add('/cache-error', CacheController::class . ':cacheError');
68-
$routes->add('/cache-http', CacheController::class . ':cacheHttp');
66+
$routes->add('/cache-test', CacheController::class . '::cacheTest');
67+
$routes->add('/cache-error', CacheController::class . '::cacheError');
68+
$routes->add('/cache-http', CacheController::class . '::cacheHttp');
6969
}
7070

7171
/**

0 commit comments

Comments
 (0)