HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/brameda.komma.pro/vendor/symfony/routing/Tests/Fixtures/php_dsl_i18n.php
<?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']);
};