mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-11 15:16:55 +03:00
10 lines
305 B
PHP
10 lines
305 B
PHP
<?php
|
|
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
|
|
|
|
return static function (RoutingConfigurator $routes): void {
|
|
$routes->import('@SurvosCommandBundle/config/routes.php')
|
|
->prefix('/admin') // consider adding this path to the access_control key in security
|
|
;
|
|
};
|
|
|