Skip to content

Commit 468f417

Browse files
committed
fix: update routing configuration to use PHP files for WebProfilerBundle
1 parent 23dcb4f commit 468f417

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Resources/app/AppKernel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ public function loadRoutes(LoaderInterface $loader): RouteCollection
6666
$collection->add('/', new Route('/', ['_controller' => 'kernel::indexAction']));
6767

6868
$routes = new RoutingConfigurator($collection, $kernelLoader, $file, $file);
69-
$routes->import('@WebProfilerBundle/Resources/config/routing/wdt.xml')->prefix('_wdt');
70-
$routes->import('@WebProfilerBundle/Resources/config/routing/profiler.xml')->prefix('_profiler');
69+
$routes->import('@WebProfilerBundle/Resources/config/routing/wdt.php')->prefix('_wdt');
70+
$routes->import('@WebProfilerBundle/Resources/config/routing/profiler.php')->prefix('_profiler');
7171

7272
return $collection;
7373
}

0 commit comments

Comments
 (0)