How to Check the Syntax of Your Twig Templates
Edit this pageWarning: You are browsing the documentation for Symfony 4.0, which is no longer maintained.
Read the updated version of this page for Symfony 7.0 (the current stable version).
How to Check the Syntax of Your Twig Templates
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 templates/article/recent_list.html.twig
# or by directory:
$ php bin/console lint:twig templates/
This work, including the code samples, is licensed under a
Creative Commons BY-SA 3.0
license.