Is it possible to debug Latte templates in PhpStorm in the same manner as one would debug plain PHP?
The documentation says:
If you are using an IDE with code stepping you can go through the generated PHP code of the template.
How to do this on PhpStorm?
UPDATE:
This depends on the environment, my question is related to Wordpress.
I already found out that, in Wordpress, the generated PHP files can be found in the cache (wp-content/uploads/cache/<theme>/_wplatte
in my case).
It seems that the files are not re-generated each time a page is loaded, so one can set breakpoints there.
BUT: I am still willing to accept a better, more complete answer, if anyone has better guidelines to offer...