collection-crud/config/routes/dev/framework.php

9 lines
290 B
PHP
Raw Normal View History

2022-11-03 10:44:05 -04:00
<?php declare(strict_types=1);
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
return static function (RoutingConfigurator $routingConfigurator): void {
2023-07-21 10:35:15 -04:00
$routingConfigurator->import('@FrameworkBundle/Resources/config/routing/errors.xml')
->prefix('/_error');
2022-11-03 10:44:05 -04:00
};