Files
w4rpservices/vendor/symfony/routing/Tests/Fixtures/imported-with-defaults.php
2019-06-23 10:14:30 +00:00

11 lines
230 B
PHP

<?php
namespace Symfony\Component\Routing\Loader\Configurator;
return function (RoutingConfigurator $routes) {
$routes
->add('one', '/one')
->add('two', '/two')->defaults(['specific' => 'imported'])
;
};