sonarrradarrplexorganizrnginxdashboardstartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpage
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
392 B
17 lines
392 B
<?php
|
|
|
|
namespace Symfony\Component\Routing\Loader\Configurator;
|
|
|
|
return function (RoutingConfigurator $routes) {
|
|
$routes
|
|
->collection()
|
|
->prefix(['en' => '/glish'])
|
|
->add('foo', '/foo')
|
|
->add('bar', ['en' => '/bar']);
|
|
|
|
$routes
|
|
->add('baz', ['en' => '/baz']);
|
|
|
|
$routes->import('php_dsl_sub_i18n.php')
|
|
->prefix(['fr' => '/ench']);
|
|
};
|
|
|