8000 [FrameworkBundle] fix deprecation of fragments by using FQCN · symfony/symfony@80e45c1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 80e45c1

Browse files
committed
[FrameworkBundle] fix deprecation of fragments by using FQCN
1 parent ac88953 commit 80e45c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
{{ render(controller('TestBundle:Fragment:inlined', {'options': {'bar': bar, 'eleven': 11}})) }}
1+
{{ render(controller('Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\Bundle\\TestBundle\\Controller\\FragmentController::inlinedAction', {'options': {'bar': bar, 'eleven': 11}})) }}
22
--
3-
{{ render(controller('TestBundle:Fragment:customformat', {'_format': 'html'})) }}
3+
{{ render(controller('Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\Bundle\\TestBundle\\Controller\\FragmentController::customformatAction', {'_format': 'html'})) }}
44
--
5-
{{ render(controller('TestBundle:Fragment:customlocale', {'_locale': 'es'})) }}
5+
{{ render(controller('Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\Bundle\\TestBundle\\Controller\\FragmentController::customlocaleAction', {'_locale': 'es'})) }}
66
--
7-
{{ app.request.setLocale('fr') }}{{ render(controller('TestBundle:Fragment:forwardlocale')) -}}
7+
{{ app.request.setLocale('fr') }}{{ render(controller('Symfony\\Bundle\\FrameworkBundle\\Tests\\Functional\\Bundle\\TestBundle\\Controller\\FragmentController::forwardlocaleAction')) -}}

0 commit comments

Comments
 (0)
0