9eb444ded0c1c728eba491b74bfea21d83910e5a
[yaffs-website] / vendor / symfony / routing / Tests / Fixtures / php_dsl_sub.php
1 <?php
2
3 namespace Symfony\Component\Routing\Loader\Configurator;
4
5 return function (RoutingConfigurator $routes) {
6     $add = $routes->collection('c_')
7         ->prefix('pub');
8
9     $add('bar', '/bar');
10
11     $add->collection('pub_')
12         ->host('host')
13         ->add('buz', 'buz');
14 };