12345678910111213141516171819202122 |
- <?php
- namespace Symfony\Component\Routing\Loader\Configurator;
- return function (RoutingConfigurator $routes) {
- $routes
- ->collection()
- ->add('foo', '/foo')
- ->condition('abc')
- ->options(array('utf8' => true))
- ->add('buz', 'zub')
- ->controller('foo:act');
- $routes->import('php_dsl_sub.php')
- ->prefix('/sub')
- ->requirements(array('id' => '\d+'));
- $routes->add('ouf', '/ouf')
- ->schemes(array('https'))
- ->methods(array('GET'))
- ->defaults(array('id' => 0));
- };
|