@@ -66,6 +66,12 @@ public function parseProvider()
66
66
array ('::index.html.php ' , '::index.html.php ' , 'views/index.html.php ' , new TemplateReference ('' , '' , 'index ' , 'html ' , 'php ' )),
67
67
array ('index.html.php ' , '::index.html.php ' , 'views/index.html.php ' , new TemplateReference ('' , '' , 'index ' , 'html ' , 'php ' )),
68
68
array ('FooBundle:Post:foo.bar.index.html.php ' , 'FooBundle:Post:foo.bar.index.html.php ' , '@FooBundle/Resources/views/Post/foo.bar.index.html.php ' , new TemplateReference ('FooBundle ' , 'Post ' , 'foo.bar.index ' , 'html ' , 'php ' )),
69
+ array ('@FooBundle/Resources/views/layout.html.twig ' , '@FooBundle/Resources/views/layout.html.twig ' , '@FooBundle/Resources/views/layout.html.twig ' , new BaseTemplateReference ('@FooBundle/Resources/views/layout.html.twig ' , 'twig ' )),
70
+ array ('@FooBundle/Foo/layout.html.twig ' , '@FooBundle/Foo/layout.html.twig ' , '@FooBundle/Foo/layout.html.twig ' , new BaseTemplateReference ('@FooBundle/Foo/layout.html.twig ' , 'twig ' )),
71
+ array ('/path/to/section/index.html.php ' , '/path/to/section/index.html.php ' , '/path/to/section/index.html.php ' , new BaseTemplateReference ('/path/to/section/index.html.php ' , 'php ' )),
72
+ array ('C: \\path \\to \\section \\name.html.php ' , 'C:path/to/section/name.html.php ' , 'C:path/to/section/name.html.php ' , new BaseTemplateReference ('C:path/to/section/name.html.php ' , 'php ' )),
73
+ array ('C: \\path \\to \\section \\name:foo.html.php ' , 'C:path/to/section/name:foo.html.php ' , 'C:path/to/section/name:foo.html.php ' , new BaseTemplateReference ('C:path/to/section/name:foo.html.php ' , 'php ' )),
74
+ array ('\\path \\to \\section \\name.html.php ' , '/path/to/section/name.html.php ' , '/path/to/section/name.html.php ' , new BaseTemplateReference ('/path/to/section/name.html.php ' , 'php ' )),
69
75
array ('/path/to/section/name.php ' , '/path/to/section/name.php ' , '/path/to/section/name.php ' , new BaseTemplateReference ('/path/to/section/name.php ' , 'php ' )),
70
76
array ('name.twig ' , 'name.twig ' , 'name.twig ' , new BaseTemplateReference ('name.twig ' , 'twig ' )),
71
77
array ('name ' , 'name ' , 'name ' , new BaseTemplateReference ('name ' )),
0 commit comments