Closed
Description
Symfony version(s) affected
6.0.0
Description
It looks like the Web Profiler doesn't work when I pass an Entity as a parameter of dump()
function
The toolbar will show An error occurred while loading the web debug toolbar. and trying to access the Profiler page will show the same error: Typed property Symfony\Component\HttpKernel\Debug\FileLinkFormatter::$requestStack must not be accessed before initialization
How to reproduce
- Install fresh new Symfony 6.0 version
symfony new myapp --full
- Create an Entity whatsoever with a string field
bin/console make:entity
- Create a record in database matching with the created entity
- Create a controller to fetch that result
bin/console make:controller
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use App\Entity\Product;
use App\Repository\ProductRepository;
class ProductController extends AbstractController
{
#[Route('/product/{id}', name: 'product')]
public function index(ProductRepository $productRepository, int $id): Response
{
$product = $productRepository->find($id);
dump($product);
return $this->render('product/index.html.twig', [
'controller_name' => 'ProductController',
]);
}
}
- Access to the page
http://localhost/product/1
and the toolbar should be broken. Opening your browser developper tool will show the details of the request.
Possible Solution
Meanwhile, I use dd()
as a workaround
Additional Context
Error:
Typed property Symfony\Component\HttpKernel\Debug\FileLinkFormatter::$requestStack must not be accessed before initialization
at vendor/symfony/http-kernel/Debug/FileLinkFormatter.php:103
at Symfony\Component\HttpKernel\Debug\FileLinkFormatter->getFileLinkFormat()
(vendor/symfony/http-kernel/Debug/FileLinkFormatter.php:61)
at Symfony\Component\HttpKernel\Debug\FileLinkFormatter->format('/var/www/src/Entity/Tour.php', 13)
(vendor/symfony/var-dumper/Dumper/HtmlDumper.php:976)
at Symfony\Component\VarDumper\Dumper\HtmlDumper->getSourceLink('/var/www/src/Entity/Tour.php', 13)
(vendor/symfony/var-dumper/Dumper/HtmlDumper.php:927)
at Symfony\Component\VarDumper\Dumper\HtmlDumper->style('note', 'App\\Entity\\Tour', array('file' => '/var/www/src/Entity/Tour.php', 'line' => 13, 'depth' => 0))
(vendor/symfony/var-dumper/Dumper/CliDumper.php:295)
at Symfony\Component\VarDumper\Dumper\CliDumper->enterHash(object(Cursor), 4, 'App\\Entity\\Tour', false)
(vendor/symfony/var-dumper/Dumper/HtmlDumper.php:811)
at Symfony\Component\VarDumper\Dumper\HtmlDumper->enterHash(object(Cursor), 4, 'App\\Entity\\Tour', true)
(vendor/symfony/var-dumper/Cloner/Data.php:350)
at Symfony\Component\VarDumper\Cloner\Data->dumpItem(object(HtmlDumper), object(Cursor), array(1, 1), object(Stub))
(vendor/symfony/var-dumper/Cloner/Data.php:275)
at Symfony\Component\VarDumper\Cloner\Data->dump(object(HtmlDumper))
(vendor/symfony/var-dumper/Dumper/AbstractDumper.php:137)
at Symfony\Component\VarDumper\Dumper\AbstractDumper->dump(object(Data), null)
(vendor/symfony/var-dumper/Dumper/HtmlDumper.php:140)
at Symfony\Component\VarDumper\Dumper\HtmlDumper->dump(object(Data))
(vendor/symfony/http-kernel/DataCollector/DumpDataCollector.php:208)
at Symfony\Component\HttpKernel\DataCollector\DumpDataCollector->getDumps('html')
(vendor/twig/twig/src/Extension/CoreExtension.php:1544)
at twig_get_attribute(object(Environment), object(Source), object(DumpDataCollector), 'getDumps', array('html'), 'method', false, false, false, 11)
(var/cache/dev/twig/10/1080515c3e955bea99c3866261a18fda9b174d51ef9eed98ed4f45260d78d304.php:93)
at __TwigTemplate_361e58c6532c1e0ae33e98dac22f966cc452700351e7089e681473bdeef8632e->block_toolbar(array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40', 'app' => object(AppVariable), '_parent' => array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40', 'app' => object(AppVariable), '_parent' => array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40', 'app' => object(AppVariable)), '_seq' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'loop' => array('parent' => array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40', 'app' => object(AppVariable)), 'index0' => 17, 'index' => 18, 'first' => false, 'revindex0' => 3, 'revindex' => 4, 'length' => 21, 'last' => false), 'template' => '@Debug/Profiler/dump.html.twig', 'name' => 'dump', 'collector' => object(DumpDataCollector), 'icon' => object(Markup)), '_seq' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'loop' => array('parent' => array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40', 'app' => object(AppVariable)), 'index0' => 17, 'index' => 18, 'first' => false, 'revindex0' => 3, 'revindex' => 4, 'length' => 21, 'last' => false), 'template' => '@Debug/Profiler/dump.html.twig', 'name' => 'dump', 'collector' => object(DumpDataCollector), 'icon' => object(Markup)), array())
(vendor/twig/twig/src/Template.php:171)
at Twig\Template->displayBlock('toolbar', array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40', 'app' => object(AppVariable), '_parent' => array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40', 'app' => object(AppVariable)), '_seq' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'loop' => array('parent' => array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40', 'app' => object(AppVariable)), 'index0' => 17, 'index' => 18, 'first' => false, 'revindex0' => 3, 'revindex' => 4, 'length' => 21, 'last' => false), 'template' => '@Debug/Profiler/dump.html.twig', 'name' => 'dump', 'collector' => object(DumpDataCollector)))
(var/cache/dev/twig/95/95bfb11210c5af6da15fd6cb2bac60ec185506cdd1de338f6b59fe9657a897c6.php:108)
at __TwigTemplate_44e1d46cb56fdd6e5861fc8a8b71e29d51238143d9be6252f09eb96191715dd9->doDisplay(array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40', 'app' => object(AppVariable), '_parent' => array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40', 'app' => object(AppVariable)), '_seq' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'loop' => array('parent' => array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40', 'app' => object(AppVariable)), 'index0' => 17, 'index' => 18, 'first' => false, 'revindex0' => 3, 'revindex' => 4, 'length' => 21, 'last' => false), 'template' => '@Debug/Profiler/dump.html.twig', 'name' => 'dump', 'collector' => object(DumpDataCollector)), array())
(vendor/twig/twig/src/Template.php:394)
at Twig\Template->displayWithErrorHandling(array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40', 'app' => object(AppVariable)), array())
(vendor/twig/twig/src/Template.php:367)
at Twig\Template->display(array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40'))
(vendor/twig/twig/src/Template.php:379)
at Twig\Template->render(array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40'), array())
(vendor/twig/twig/src/TemplateWrapper.php:40)
at Twig\TemplateWrapper->render(array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40'))
(vendor/twig/twig/src/Environment.php:277)
at Twig\Environment->render('@WebProfiler/Profiler/toolbar.html.twig', array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40'))
(vendor/symfony/web-profiler-bundle/Controller/ProfilerController.php:384)
at Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController->renderWithCspNonces(object(Request), '@WebProfiler/Profiler/toolbar.html.twig', array('full_stack' => false, 'request' => object(Request), 'profile' => object(Profile), 'templates' => array('request' => '@WebProfiler/Collector/request.html.twig', 'time' => '@WebProfiler/Collector/time.html.twig', 'memory' => '@WebProfiler/Collector/memory.html.twig', 'validator' => '@WebProfiler/Collector/validator.html.twig', 'ajax' => '@WebProfiler/Collector/ajax.html.twig', 'form' => '@WebProfiler/Collector/form.html.twig', 'exception' => '@WebProfiler/Collector/exception.html.twig', 'logger' => '@WebProfiler/Collector/logger.html.twig', 'events' => '@WebProfiler/Collector/events.html.twig', 'router' => '@WebProfiler/Collector/router.html.twig', 'cache' => '@WebProfiler/Collector/cache.html.twig', 'translation' => '@WebProfiler/Collector/translation.html.twig', 'security' => '@Security/Collector/security.html.twig', 'twig' => '@WebProfiler/Collector/twig.html.twig', 'http_client' => '@WebProfiler/Collector/http_client.html.twig', 'db' => '@Doctrine/Collector/db.html.twig', 'doctrine_migrations' => '@DoctrineMigrations/Collector/migrations.html.twig', 'dump' => '@Debug/Profiler/dump.html.twig', 'mailer' => '@WebProfiler/Collector/mailer.html.twig', 'notifier' => '@WebProfiler/Collector/notifier.html.twig', 'config' => '@WebProfiler/Collector/config.html.twig'), 'profiler_url' => 'http://10.17.222.57:8080/_profiler/53b7fd', 'token' => '53b7fd', 'profiler_markup_version' => 2, 'csp_script_nonce' => 'fa30a89c82fe6dd2934a240e0b46f6d2', 'csp_style_nonce' => '901118856650314b076fe67460b7cb40'))
(vendor/symfony/web-profiler-bundle/Controller/ProfilerController.php:162)
at Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController->toolbarAction(object(Request), '53b7fd')
(vendor/symfony/http-kernel/HttpKernel.php:152)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:74)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/var/www/vendor/autoload_runtime.php')
(public/index.php:5)