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 @@ -213,7 +213,7 @@ configuration option to point to it:
213
213
214
214
# config/packages/twig.yaml
215
215
twig :
216
- exception_controller : App\Controller\ExceptionController::showException
216
+ exception_controller : App\Controller\ExceptionController::showAction
217
217
218
218
.. code-block :: xml
219
219
@@ -228,7 +228,7 @@ configuration option to point to it:
228
228
https://symfony.com/schema/dic/twig/twig-1.0.xsd" >
229
229
230
230
<twig : config >
231
- <twig : exception-controller >App\Controller\ExceptionController::showException </twig : exception-controller >
231
+ <twig : exception-controller >App\Controller\ExceptionController::showAction </twig : exception-controller >
232
232
</twig : config >
233
233
234
234
</container >
@@ -237,7 +237,7 @@ configuration option to point to it:
237
237
238
238
// config/packages/twig.php
239
239
$container->loadFromExtension('twig', [
240
- 'exception_controller' => 'App\Controller\ExceptionController::showException ',
240
+ 'exception_controller' => 'App\Controller\ExceptionController::showAction ',
241
241
// ...
242
242
]);
243
243
You can’t perform that action at this time.
0 commit comments