File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ This can be done by importing routing resources from the main routing file:
19
19
# config/routes.yaml
20
20
app_file :
21
21
# loads routes from the given routing file stored in some bundle
22
- resource : ' @AcmeOtherBundle/Resources/config/routing.yml '
22
+ resource : ' @AcmeOtherBundle/Resources/config/routing.yaml '
23
23
24
24
app_annotations :
25
25
# loads routes from the PHP annotations of the controllers found in that directory
@@ -46,7 +46,7 @@ This can be done by importing routing resources from the main routing file:
46
46
http://symfony.com/schema/routing/routing-1.0.xsd" >
47
47
48
48
<!-- loads routes from the given routing file stored in some bundle -->
49
- <import resource =" @AcmeOtherBundle/Resources/config/routing.yml " />
49
+ <import resource =" @AcmeOtherBundle/Resources/config/routing.yaml " />
50
50
51
51
<!-- loads routes from the PHP annotations of the controllers found in that directory -->
52
52
<import resource =" ../src/Controller/" type =" annotation" />
@@ -66,7 +66,7 @@ This can be done by importing routing resources from the main routing file:
66
66
$routes = new RouteCollection();
67
67
$routes->addCollection(
68
68
// loads routes from the given routing file stored in some bundle
69
- $loader->import("@AcmeOtherBundle/Resources/config/routing.yml ")
69
+ $loader->import("@AcmeOtherBundle/Resources/config/routing.yaml ")
70
70
71
71
// loads routes from the PHP annotations of the controllers found in that directory
72
72
$loader->import("../src/Controller/", "annotation")
You can’t perform that action at this time.
0 commit comments