php_dsl_sub_i18n.php 249 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 <?php namespace Symfony\Component\Routing\Loader\Configurator; return function (RoutingConfigurator $routes) { $add = $routes->collection('c_') ->prefix('pub'); $add('foo', ['fr' => '/foo']); $add('bar', ['fr' => '/bar']); };