I would like to TOTALLY disable the twig error pages in Symfony. I do not want to customize them as described here: http://symfony.com/doc/2.0/cookbook/controller/error_pages.html but rather simply unplug the exception handling mechanism of twig and end up with plain good old php errors.
Is it possible at all?
To disable twig error pages you can just add something like
to your app/config.yml
After this you will see much simple screen produced by Symfony\Component\HttpKernel\Debug\ExceptionHandler. If you want to remove this behavior – replace this class or just comment set_exception_handler call in.