mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-23 03:19:10 -04:00
Include Vendor
This commit is contained in:
15
vendor/symfony/routing/Tests/Fixtures/php_dsl_sub.php
vendored
Normal file
15
vendor/symfony/routing/Tests/Fixtures/php_dsl_sub.php
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Symfony\Component\Routing\Loader\Configurator;
|
||||
|
||||
return function (RoutingConfigurator $routes) {
|
||||
$add = $routes->collection('c_')
|
||||
->prefix('pub');
|
||||
|
||||
$add('root', '/');
|
||||
$add('bar', '/bar');
|
||||
|
||||
$add->collection('pub_')
|
||||
->host('host')
|
||||
->add('buz', 'buz');
|
||||
};
|
||||
Reference in New Issue
Block a user