12 lines
260 B
PHP
12 lines
260 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\Routing\Loader\Configurator;
|
|
|
|
return function (RoutingConfigurator $routes) {
|
|
$routes->import('imported-with-defaults.php')
|
|
->prefix('/defaults')
|
|
->locale('g_locale')
|
|
->format('g_format')
|
|
;
|
|
};
|