Ubi est audax amicitia
Teres talis saepe tractare de camerarius flavum sensorem. Bassus fatalis classiss virtualiter transferre de flavum. Aliquam sodales odio id eleifend tristique. Ubi est audax amicitia. Ut suscipit posuere justo at vulputate.
Teres talis saepe tractare de camerarius flavum sensorem. Bassus fatalis classiss virtualiter transferre de flavum. Aliquam sodales odio id eleifend tristique. Ubi est audax amicitia. Ut suscipit posuere justo at vulputate.
Vae humani generis. Ubi est barbatus nix. Mauris dapibus risus quis suscipit vulputate. Ut suscipit posuere justo at vulputate. Teres talis saepe tractare de camerarius flavum sensorem. Eros diam egestas libero eu vulputate risus.
Aliquam sodales odio id eleifend tristique. Era brevis ratione est. Curabitur aliquam euismod dolor non ornare. Pellentesque et sapien pulvinar consectetur. Ubi est audax amicitia. Eros diam egestas libero eu vulputate risus. Vae humani generis.
ErrorException {#1335 #severity: E_WARNING }
if (\function_exists('gzencode')) {
$data = gzencode($data, 3);
}
if (false === file_put_contents($file, $data, \LOCK_EX)) {
return false;
}
if (!$profileIndexed) {
// Add to index
if ($collector instanceof LateDataCollectorInterface) {
$collector->lateCollect();
}
}
if (!($ret = $this->storage->write($profile)) && null !== $this->logger) {
$this->logger->warning('Unable to store the profiler information.', ['configured_storage' => $this->storage::class]);
}
return $ret;
}
}
}
// save profiles
foreach ($this->profiles as $request) {
$this->profiler->saveProfile($this->profiles[$request]);
}
$this->profiles = new \SplObjectStorage();
$this->parents = new \SplObjectStorage();
}
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
foreach ($listeners as $listener) {
if ($stoppable && $event->isPropagationStopped()) {
break;
}
$listener($event, $eventName, $this);
}
}
/**
* Sorts the internal list of listeners for the given event by priority.
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
/**
* @return void
*/
public function terminate(Request $request, Response $response)
{
$this->dispatcher->dispatch(new TerminateEvent($this, $request, $response), KernelEvents::TERMINATE);
}
/**
* @internal
*/
if (false === $this->booted) {
return;
}
if ($this->getHttpKernel() instanceof TerminableInterface) {
$this->getHttpKernel()->terminate($request, $response);
}
}
/**
* @return void
} else {
$response->send();
}
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
return 0;
}
}
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Level | Channel | Message |
---|---|---|
DEBUG 07:08:41 | php |
Warning: Zend OPcache API is restricted by "restrict_api" configuration directive { "exception": { "severity": 2, "file": "/home/ccoste/codes/coste/www/vendor/symfony/error-handler/DebugClassLoader.php", "line": 292, "trace": [ { "file": "/home/ccoste/codes/coste/www/vendor/doctrine/doctrine-bundle/DoctrineBundle.php", "line": 130, "function": "loadClass", "class": "Symfony\\Component\\ErrorHandler\\DebugClassLoader", "type": "->" } ], "count": 394 } } |
INFO 07:08:41 | deprecation |
Deprecated: Constant E_STRICT is deprecated { "exception": {} } |
DEBUG 07:08:41 | event |
Notified event "kernel.terminate" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelTerminate". { "event": "kernel.terminate", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate" } |
WARNING 07:08:41 | php |
Uncaught Warning: file_put_contents(/home/ccoste/codes/coste/www/var/cache/dev/profiler/97/60/f86097): Failed to open stream: Disk quota exceeded { "exception": {} } |
INFO 07:08:41 | request |
Matched route "blog_index_paginated". { "route": "blog_index_paginated", "route_parameters": { "_route": "blog_index_paginated", "_format": "html", "_controller": "App\\Controller\\BlogController::index", "_locale": "fr", "page": "2" }, "request_uri": "http://coste.codes/public/fr/blog/page/2?tag=adipiscing", "method": "GET" } |
DEBUG 07:08:41 | security |
Checking for authenticator support. { "firewall_name": "main", "authenticators": 2 } |
DEBUG 07:08:41 | security |
Checking support on authenticator. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 07:08:41 | security |
Authenticator does not support the request. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 07:08:41 | security |
Checking support on authenticator. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator" } |
DEBUG 07:08:41 | security |
Authenticator does not support the request. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectToPreferredLocaleSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectToPreferredLocaleSubscriber::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\ControllerSubscriber::registerCurrentController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\ControllerSubscriber::registerCurrentController" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
INFO 07:08:41 | doctrine |
Connecting with parameters {params} { "params": { "use_savepoints": true, "driver": "pdo_sqlite", "host": "localhost", "port": null, "user": "root", "password": null, "driverOptions": [], "defaultTableOptions": [], "path": "/home/ccoste/codes/coste/www/data/database.sqlite", "charset": "utf8" } } |
DEBUG 07:08:41 | php |
Warning: Zend OPcache API is restricted by "restrict_api" configuration directive { "exception": { "severity": 2, "file": "/home/ccoste/codes/coste/www/vendor/symfony/error-handler/DebugClassLoader.php", "line": 292, "trace": [ { "file": "/home/ccoste/codes/coste/www/vendor/doctrine/doctrine-bundle/DoctrineBundle.php", "line": 130, "function": "loadClass", "class": "Symfony\\Component\\ErrorHandler\\DebugClassLoader", "type": "->" } ], "count": 394 } } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\Routing\Attribute\Route::__construct(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\Routing\Attribute\Route::__construct(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\Routing\Attribute\Route::__construct(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\Routing\Attribute\Route::__construct(): Implicitly marking parameter $utf8 as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\Routing\Attribute\Route::__construct(): Implicitly marking parameter $stateless as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller_arguments" to listener "Container2mjabL0\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Container2mjabL0\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 07:08:41 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2 FROM symfony_demo_tag t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2 FROM symfony_demo_tag t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "adipiscing" }, "types": { "1": 2 } } |
DEBUG 07:08:41 | php |
Warning: Zend OPcache API is restricted by "restrict_api" configuration directive { "exception": { "severity": 2, "file": "/home/ccoste/codes/coste/www/vendor/symfony/error-handler/DebugClassLoader.php", "line": 292, "trace": [ { "file": "/home/ccoste/codes/coste/www/vendor/doctrine/doctrine-bundle/DoctrineBundle.php", "line": 130, "function": "loadClass", "class": "Symfony\\Component\\ErrorHandler\\DebugClassLoader", "type": "->" } ], "count": 394 } } |
DEBUG 07:08:41 | doctrine |
Executing statement: SELECT DISTINCT s0_.id AS id_0, s0_.published_at AS published_at_1 FROM symfony_demo_post s0_ INNER JOIN symfony_demo_user s1_ ON s0_.author_id = s1_.id LEFT JOIN symfony_demo_post_tag s3_ ON s0_.id = s3_.post_id LEFT JOIN symfony_demo_tag s2_ ON s2_.id = s3_.tag_id WHERE s0_.published_at <= ? AND EXISTS (SELECT 1 FROM symfony_demo_post_tag s4_ WHERE s4_.post_id = s0_.id AND s4_.tag_id IN (?)) ORDER BY s0_.published_at DESC LIMIT 10 OFFSET 10 (parameters: {params}, types: {types}) { "sql": "SELECT DISTINCT s0_.id AS id_0, s0_.published_at AS published_at_1 FROM symfony_demo_post s0_ INNER JOIN symfony_demo_user s1_ ON s0_.author_id = s1_.id LEFT JOIN symfony_demo_post_tag s3_ ON s0_.id = s3_.post_id LEFT JOIN symfony_demo_tag s2_ ON s2_.id = s3_.tag_id WHERE s0_.published_at <= ? AND EXISTS (SELECT 1 FROM symfony_demo_post_tag s4_ WHERE s4_.post_id = s0_.id AND s4_.tag_id IN (?)) ORDER BY s0_.published_at DESC LIMIT 10 OFFSET 10", "params": { "1": "2025-06-27 07:08:41", "2": 4 }, "types": { "1": 2, "2": 1 } } |
DEBUG 07:08:41 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.title AS title_1, s0_.slug AS slug_2, s0_.summary AS summary_3, s0_.content AS content_4, s0_.published_at AS published_at_5, s1_.id AS id_6, s1_.full_name AS full_name_7, s1_.username AS username_8, s1_.email AS email_9, s1_.password AS password_10, s1_.roles AS roles_11, s2_.id AS id_12, s2_.name AS name_13, s0_.author_id AS author_id_14 FROM symfony_demo_post s0_ INNER JOIN symfony_demo_user s1_ ON s0_.author_id = s1_.id LEFT JOIN symfony_demo_post_tag s3_ ON s0_.id = s3_.post_id LEFT JOIN symfony_demo_tag s2_ ON s2_.id = s3_.tag_id WHERE s0_.published_at <= ? AND EXISTS (SELECT 1 FROM symfony_demo_post_tag s4_ WHERE s4_.post_id = s0_.id AND s4_.tag_id IN (?)) AND s0_.id IN (?, ?, ?) ORDER BY s0_.published_at DESC, s2_.name ASC (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.title AS title_1, s0_.slug AS slug_2, s0_.summary AS summary_3, s0_.content AS content_4, s0_.published_at AS published_at_5, s1_.id AS id_6, s1_.full_name AS full_name_7, s1_.username AS username_8, s1_.email AS email_9, s1_.password AS password_10, s1_.roles AS roles_11, s2_.id AS id_12, s2_.name AS name_13, s0_.author_id AS author_id_14 FROM symfony_demo_post s0_ INNER JOIN symfony_demo_user s1_ ON s0_.author_id = s1_.id LEFT JOIN symfony_demo_post_tag s3_ ON s0_.id = s3_.post_id LEFT JOIN symfony_demo_tag s2_ ON s2_.id = s3_.tag_id WHERE s0_.published_at <= ? AND EXISTS (SELECT 1 FROM symfony_demo_post_tag s4_ WHERE s4_.post_id = s0_.id AND s4_.tag_id IN (?)) AND s0_.id IN (?, ?, ?) ORDER BY s0_.published_at DESC, s2_.name ASC", "params": { "1": "2025-06-27 07:08:41", "2": 4, "3": 18, "4": 21, "5": 25 }, "types": { "1": 2, "2": 1, "3": 1, "4": 1, "5": 1 } } |
DEBUG 07:08:41 | doctrine |
Executing statement: SELECT count(DISTINCT s0_.id) AS sclr_0 FROM symfony_demo_post s0_ INNER JOIN symfony_demo_user s1_ ON s0_.author_id = s1_.id LEFT JOIN symfony_demo_post_tag s3_ ON s0_.id = s3_.post_id LEFT JOIN symfony_demo_tag s2_ ON s2_.id = s3_.tag_id WHERE s0_.published_at <= ? AND EXISTS (SELECT 1 FROM symfony_demo_post_tag s4_ WHERE s4_.post_id = s0_.id AND s4_.tag_id IN (?)) (parameters: {params}, types: {types}) { "sql": "SELECT count(DISTINCT s0_.id) AS sclr_0 FROM symfony_demo_post s0_ INNER JOIN symfony_demo_user s1_ ON s0_.author_id = s1_.id LEFT JOIN symfony_demo_post_tag s3_ ON s0_.id = s3_.post_id LEFT JOIN symfony_demo_tag s2_ ON s2_.id = s3_.tag_id WHERE s0_.published_at <= ? AND EXISTS (SELECT 1 FROM symfony_demo_post_tag s4_ WHERE s4_.post_id = s0_.id AND s4_.tag_id IN (?))", "params": { "1": "2025-06-27 07:08:41", "2": 4 }, "types": { "1": 2, "2": 1 } } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\WebpackEncoreBundle\Asset\TagRenderer::__construct(): Implicitly marking parameter $eventDispatcher as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\WebpackEncoreBundle\Asset\TagRenderer::renderWebpackScriptTags(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\WebpackEncoreBundle\Asset\TagRenderer::renderWebpackScriptTags(): Implicitly marking parameter $entrypointName as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\WebpackEncoreBundle\Asset\TagRenderer::renderWebpackLinkTags(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\WebpackEncoreBundle\Asset\TagRenderer::renderWebpackLinkTags(): Implicitly marking parameter $entrypointName as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\WebpackEncoreBundle\Asset\TagRenderer::getAssetPath(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
DEBUG 07:08:41 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:08:41 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\Intl\Locales::getName(): Implicitly marking parameter $displayLocale as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\Intl\Locales::getNames(): Implicitly marking parameter $displayLocale as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\Intl\ResourceBundle::readEntry(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\Intl\ResourceBundle::asort(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
DEBUG 07:08:41 | php |
Warning: Zend OPcache API is restricted by "restrict_api" configuration directive { "exception": { "severity": 2, "file": "/home/ccoste/codes/coste/www/vendor/symfony/error-handler/DebugClassLoader.php", "line": 292, "trace": [ { "file": "/home/ccoste/codes/coste/www/vendor/doctrine/doctrine-bundle/DoctrineBundle.php", "line": 130, "function": "loadClass", "class": "Symfony\\Component\\ErrorHandler\\DebugClassLoader", "type": "->" } ], "count": 394 } } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Bridge\Twig\Extension\HttpKernelRuntime::__construct(): Implicitly marking parameter $fragmentUriGenerator as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\HttpKernel\Fragment\FragmentUriGeneratorInterface::generate(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\HttpKernel\Fragment\FragmentUriGenerator::__construct(): Implicitly marking parameter $signer as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\HttpKernel\Fragment\FragmentUriGenerator::__construct(): Implicitly marking parameter $requestStack as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\HttpKernel\Fragment\FragmentUriGenerator::generate(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\HttpKernel\Fragment\AbstractSurrogateFragmentRenderer::__construct(): Implicitly marking parameter $signer as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer::__construct(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\String\UnicodeString::join(): Implicitly marking parameter $lastGlue as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\String\UnicodeString::slice(): Implicitly marking parameter $length as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\String\UnicodeString::splice(): Implicitly marking parameter $length as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\String\UnicodeString::split(): Implicitly marking parameter $limit as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\String\UnicodeString::split(): Implicitly marking parameter $flags as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\String\AbstractUnicodeString::join(): Implicitly marking parameter $lastGlue as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\String\AbstractString::join(): Implicitly marking parameter $lastGlue as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\String\AbstractString::slice(): Implicitly marking parameter $length as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\String\AbstractString::splice(): Implicitly marking parameter $length as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\String\AbstractString::split(): Implicitly marking parameter $limit as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\String\AbstractString::split(): Implicitly marking parameter $flags as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Component\String\AbstractString::toByteString(): Implicitly marking parameter $toEncoding as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 07:08:41 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest" } |
CRITICAL 07:08:41 | request |
Uncaught PHP Exception ErrorException: "Warning: file_put_contents(/home/ccoste/codes/coste/www/var/cache/dev/profiler/97/60/f86097): Failed to open stream: Disk quota exceeded" at FileProfilerStorage.php line 177 { "exception": {} } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectToPreferredLocaleSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectToPreferredLocaleSubscriber::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest" } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Bundle\FrameworkBundle\Controller\TemplateController::__construct(): Implicitly marking parameter $twig as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Bundle\FrameworkBundle\Controller\TemplateController::templateAction(): Implicitly marking parameter $maxAge as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Bundle\FrameworkBundle\Controller\TemplateController::templateAction(): Implicitly marking parameter $sharedAge as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Bundle\FrameworkBundle\Controller\TemplateController::templateAction(): Implicitly marking parameter $private as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Bundle\FrameworkBundle\Controller\TemplateController::__invoke(): Implicitly marking parameter $maxAge as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Bundle\FrameworkBundle\Controller\TemplateController::__invoke(): Implicitly marking parameter $sharedAge as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
INFO 07:08:41 | deprecation |
Deprecated: Symfony\Bundle\FrameworkBundle\Controller\TemplateController::__invoke(): Implicitly marking parameter $private as nullable is deprecated, the explicit nullable type must be used instead { "exception": {} } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\ControllerSubscriber::registerCurrentController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\ControllerSubscriber::registerCurrentController" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller_arguments" to listener "Container2mjabL0\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Container2mjabL0\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 07:08:41 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 07:08:41 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectToPreferredLocaleSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectToPreferredLocaleSubscriber::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.request" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\ControllerSubscriber::registerCurrentController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\ControllerSubscriber::registerCurrentController" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller_arguments" to listener "Container2mjabL0\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Container2mjabL0\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 07:08:41 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
ErrorException
|
---|
ErrorException: Warning: file_put_contents(/home/ccoste/codes/coste/www/var/cache/dev/profiler/97/60/f86097): Failed to open stream: Disk quota exceeded at vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:177 at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->write(object(Profile)) (vendor/symfony/http-kernel/Profiler/Profiler.php:104) at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile(object(Profile)) (vendor/symfony/http-kernel/EventListener/ProfilerListener.php:135) at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher)) (vendor/symfony/event-dispatcher/EventDispatcher.php:220) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener)), 'kernel.terminate', object(TerminateEvent)) (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate') (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate') (vendor/symfony/http-kernel/HttpKernel.php:115) at Symfony\Component\HttpKernel\HttpKernel->terminate(object(Request), object(Response)) (vendor/symfony/http-kernel/Kernel.php:157) at Symfony\Component\HttpKernel\Kernel->terminate(object(Request), object(Response)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:53) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:29) at require_once('/home/ccoste/codes/coste/www/vendor/autoload_runtime.php') (public/index.php:5) |
return $this->__get($key);
}
public function offsetSet(mixed $key, mixed $value): void
{
throw new \BadMethodCallException(self::class.' objects are immutable.');
}
public function offsetUnset(mixed $key): void
{
throw new \BadMethodCallException(self::class.' objects are immutable.');
/**
* @see TraceableEventDispatcher
*/
public function setCalledListeners(array $listeners, string $dispatcher = null): void
{
$this->data[$dispatcher ?? $this->defaultDispatcher]['called_listeners'] = $listeners;
}
/**
* @see TraceableEventDispatcher
*/
foreach ($this->dispatchers as $name => $dispatcher) {
if (!$dispatcher instanceof TraceableEventDispatcher) {
continue;
}
$this->setCalledListeners($dispatcher->getCalledListeners($this->currentRequest), $name);
$this->setNotCalledListeners($dispatcher->getNotCalledListeners($this->currentRequest), $name);
$this->setOrphanedEvents($dispatcher->getOrphanedEvents($this->currentRequest), $name);
}
$this->data = $this->cloneVar($this->data);
public function saveProfile(Profile $profile): bool
{
// late collect
foreach ($profile->getCollectors() as $collector) {
if ($collector instanceof LateDataCollectorInterface) {
$collector->lateCollect();
}
}
if (!($ret = $this->storage->write($profile)) && null !== $this->logger) {
$this->logger->warning('Unable to store the profiler information.', ['configured_storage' => $this->storage::class]);
}
}
// save profiles
foreach ($this->profiles as $request) {
$this->profiler->saveProfile($this->profiles[$request]);
}
$this->profiles = new \SplObjectStorage();
$this->parents = new \SplObjectStorage();
}
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
foreach ($listeners as $listener) {
if ($stoppable && $event->isPropagationStopped()) {
break;
}
$listener($event, $eventName, $this);
}
}
/**
* Sorts the internal list of listeners for the given event by priority.
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
/**
* @return void
*/
public function terminate(Request $request, Response $response)
{
$this->dispatcher->dispatch(new TerminateEvent($this, $request, $response), KernelEvents::TERMINATE);
}
/**
* @internal
*/
}
$response->sendHeaders();
$response->sendContent();
$this->terminate($request, $response);
}
/**
* Handles a request to convert it to a response.
*
if ($hasRun) {
throw $e;
}
$hasRun = true;
$kernel->terminateWithException($e, $request);
};
}
} elseif ($event instanceof ConsoleEvent && $app = $event->getCommand()->getApplication()) {
$output = $event->getOutput();
if ($output instanceof ConsoleOutputInterface) {
$this->exceptionHandler = null;
}
try {
if (null !== $exceptionHandler) {
$exceptionHandler($exception);
return;
}
$handlerException ??= $exception;
} catch (\Throwable $handlerException) {
BadMethodCallException
|
---|
BadMethodCallException: Symfony\Component\VarDumper\Cloner\Data objects are immutable. at /home/ccoste/codes/coste/www/vendor/symfony/var-dumper/Cloner/Data.php:155 at Symfony\Component\VarDumper\Cloner\Data->offsetSet('called_listeners', array(array('event' => 'kernel.request', 'priority' => 2048, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 256, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 128, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 100, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 48, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 32, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 16, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 15, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 8, 'pretty' => 'Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 8, 'pretty' => 'Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'App\\EventSubscriber\\RedirectToPreferredLocaleSubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.controller', 'priority' => 10, 'pretty' => 'Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController', 'stub' => object(ClassStub)), array('event' => 'kernel.controller', 'priority' => 0, 'pretty' => 'Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController', 'stub' => object(ClassStub)), array('event' => 'kernel.controller', 'priority' => 0, 'pretty' => 'App\\EventSubscriber\\ControllerSubscriber::registerCurrentController', 'stub' => object(ClassStub)), array('event' => 'kernel.controller', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController', 'stub' => object(ClassStub)), array('event' => 'kernel.controller_arguments', 'priority' => 20, 'pretty' => 'Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments', 'stub' => object(ClassStub)), array('event' => 'kernel.controller_arguments', 'priority' => 10, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments', 'stub' => object(ClassStub)), array('event' => 'kernel.controller_arguments', 'priority' => 0, 'pretty' => 'Container2mjabL0\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments', 'stub' => object(ClassStub)), array('event' => 'kernel.controller_arguments', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => -10, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => -100, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => -128, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => -128, 'pretty' => 'Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => -255, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => -1000, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.finish_request', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.finish_request', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.finish_request', 'priority' => 0, 'pretty' => 'Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.finish_request', 'priority' => 0, 'pretty' => 'Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets', 'stub' => object(ClassStub)), array('event' => 'kernel.finish_request', 'priority' => -15, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest', 'stub' => object(ClassStub)))) (/home/ccoste/codes/coste/www/vendor/symfony/http-kernel/DataCollector/EventDataCollector.php:91) at Symfony\Component\HttpKernel\DataCollector\EventDataCollector->setCalledListeners(array(array('event' => 'kernel.request', 'priority' => 2048, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 256, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 128, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 100, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 48, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 32, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 16, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 15, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 8, 'pretty' => 'Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 8, 'pretty' => 'Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'App\\EventSubscriber\\RedirectToPreferredLocaleSubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.controller', 'priority' => 10, 'pretty' => 'Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController', 'stub' => object(ClassStub)), array('event' => 'kernel.controller', 'priority' => 0, 'pretty' => 'Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController', 'stub' => object(ClassStub)), array('event' => 'kernel.controller', 'priority' => 0, 'pretty' => 'App\\EventSubscriber\\ControllerSubscriber::registerCurrentController', 'stub' => object(ClassStub)), array('event' => 'kernel.controller', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController', 'stub' => object(ClassStub)), array('event' => 'kernel.controller_arguments', 'priority' => 20, 'pretty' => 'Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments', 'stub' => object(ClassStub)), array('event' => 'kernel.controller_arguments', 'priority' => 10, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments', 'stub' => object(ClassStub)), array('event' => 'kernel.controller_arguments', 'priority' => 0, 'pretty' => 'Container2mjabL0\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments', 'stub' => object(ClassStub)), array('event' => 'kernel.controller_arguments', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => -10, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => -100, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => -128, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => -128, 'pretty' => 'Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => -255, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => -1000, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.finish_request', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.finish_request', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.finish_request', 'priority' => 0, 'pretty' => 'Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.finish_request', 'priority' => 0, 'pretty' => 'Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets', 'stub' => object(ClassStub)), array('event' => 'kernel.finish_request', 'priority' => -15, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest', 'stub' => object(ClassStub))), 'event_dispatcher') (/home/ccoste/codes/coste/www/vendor/symfony/http-kernel/DataCollector/EventDataCollector.php:73) at Symfony\Component\HttpKernel\DataCollector\EventDataCollector->lateCollect() (/home/ccoste/codes/coste/www/vendor/symfony/http-kernel/Profiler/Profiler.php:100) at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile(object(Profile)) (/home/ccoste/codes/coste/www/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:135) at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher)) (/home/ccoste/codes/coste/www/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher)) (/home/ccoste/codes/coste/www/vendor/symfony/event-dispatcher/EventDispatcher.php:220) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener)), 'kernel.terminate', object(TerminateEvent)) (/home/ccoste/codes/coste/www/vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate') (/home/ccoste/codes/coste/www/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate') (/home/ccoste/codes/coste/www/vendor/symfony/http-kernel/HttpKernel.php:115) at Symfony\Component\HttpKernel\HttpKernel->terminate(object(Request), object(Response)) (/home/ccoste/codes/coste/www/vendor/symfony/http-kernel/HttpKernel.php:142) at Symfony\Component\HttpKernel\HttpKernel->terminateWithException(object(ErrorException), object(Request)) (/home/ccoste/codes/coste/www/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:82) at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::{closure:Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure():76}(object(ErrorException)) (/home/ccoste/codes/coste/www/vendor/symfony/error-handler/ErrorHandler.php:531) at Symfony\Component\ErrorHandler\ErrorHandler->handleException(object(ErrorException)) |