Integrates awesomite/error-dumper into your Symfony application
To display easy to debug stack trace (see example).
First of all add library to the project:
composer require awesomite/error-dumper-bundleThen register bundle in AppKernel::registerBundles:
if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
$bundles[] = new \Awesomite\ErrorDumperBundle\AwesomiteErrorDumperBundle();
}Define value of framework.ide. Functions and numbers of lines will be links to source code in your IDE.
