How to Check the Syntax of Your Twig Templates
Warning: You are browsing the documentation for Symfony 3.x, which is no longer maintained.
Read the updated version of this page for Symfony 7.1 (the current stable version).
You can check for syntax errors in Twig templates using the lint:twig
console command:
1 2 3 4 5
# You can check by filename:
$ php bin/console lint:twig app/Resources/views/article/recent_list.html.twig
# or by directory:
$ php bin/console lint:twig app/Resources/views
This work, including the code samples, is licensed under a
Creative Commons BY-SA 3.0 license.