ErrorException {#585 #severity: E_WARNING }
throw ORMInvalidArgumentException::proxyDirectoryNotWritable($this->proxyDir);
}
$tmpFileName = $fileName . '.' . bin2hex(random_bytes(12));
file_put_contents($tmpFileName, $proxyCode);
@chmod($tmpFileName, 0664);
rename($tmpFileName, $fileName);
}
private function generateUseLazyGhostTrait(ClassMetadata $class): string
if (file_exists($fileName)) {
break;
}
// no break
case self::AUTOGENERATE_ALWAYS:
$this->generateProxyClass($class, $fileName, $proxyClassName);
break;
}
require $fileName;
}
$className = $class->getName(); // aliases and case sensitivity
$entityPersister = $this->uow->getEntityPersister($className);
$initializer = $this->createLazyInitializer($class, $entityPersister, $this->identifierFlattener);
$proxyClassName = $this->loadProxyClass($class);
$identifierFields = array_intersect_key($class->getReflectionProperties(), $identifiers);
$proxyFactory = Closure::bind(static function (array $identifier) use ($initializer, $skippedProperties, $identifierFields, $className): InternalProxy {
$proxy = self::createLazyGhost(static function (InternalProxy $object) use ($initializer, &$proxy): void {
$initializer($object, $proxy);
{
if (! $this->isLazyGhostObjectEnabled) {
return parent::getProxy($className, $identifier);
}
$proxyFactory = $this->proxyFactories[$className] ?? $this->getProxyFactory($className);
return $proxyFactory($identifier);
}
/**
$normalizedAssociatedId = $this->normalizeIdentifier($targetClass, $associatedId);
switch (true) {
// We are negating the condition here. Other cases will assume it is valid!
case $hints['fetchMode'][$class->name][$field] !== ClassMetadata::FETCH_EAGER:
$newValue = $this->em->getProxyFactory()->getProxy($assoc['targetEntity'], $normalizedAssociatedId);
$this->registerManaged($newValue, $associatedId, []);
break;
// Deferred eager load only works for single identifier classes
case isset($hints[self::HINT_DEFEREAGERLOAD]) &&
if (isset($this->_hints[Query::HINT_REFRESH_ENTITY])) {
$this->registerManaged($this->class, $this->_hints[Query::HINT_REFRESH_ENTITY], $data);
}
$uow = $this->_em->getUnitOfWork();
$entity = $uow->createEntity($entityName, $data, $this->_hints);
$result[] = $entity;
if (isset($this->_hints[Query::HINT_INTERNAL_ITERATION]) && $this->_hints[Query::HINT_INTERNAL_ITERATION]) {
$this->_uow->hydrationComplete();
protected function hydrateAllData()
{
$result = [];
while ($row = $this->statement()->fetchAssociative()) {
$this->hydrateRowData($row, $result);
}
$this->_em->getUnitOfWork()->triggerEagerLoads();
return $result;
$this->_em->getEventManager()->addEventListener([Events::onClear], $this);
$this->prepare();
try {
$result = $this->hydrateAllData();
} finally {
$this->cleanup();
}
return $result;
$hints[Query::HINT_REFRESH] = true;
$hints[Query::HINT_REFRESH_ENTITY] = $entity;
}
$hydrator = $this->em->newHydrator($this->currentPersisterContext->selectJoinSql ? Query::HYDRATE_OBJECT : Query::HYDRATE_SIMPLEOBJECT);
$entities = $hydrator->hydrateAll($stmt, $this->currentPersisterContext->rsm, $hints);
return $entities ? $entities[0] : null;
}
/**
*/
public function findOneBy(array $criteria, ?array $orderBy = null)
{
$persister = $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
return $persister->load($criteria, null, null, [], null, 1, $orderBy);
}
/**
* Counts entities by a set of criteria.
*
// find by criteria
if (!$criteria = $this->getCriteria($request, $options, $manager)) {
return [];
}
try {
$object = $manager->getRepository($options->class)->findOneBy($criteria);
} catch (NoResultException|ConversionException) {
$object = null;
}
}
public function resolve(Request $request, ArgumentMetadata $argument): iterable
{
$method = $this->inner::class.'::'.__FUNCTION__;
$this->stopwatch->start($method, 'controller.argument_value_resolver');
yield from $this->inner->resolve($request, $argument);
$this->stopwatch->stop($method);
}
}
if (isset($disabledResolvers[\is_int($name) ? $resolver::class : $name])) {
continue;
}
$count = 0;
foreach ($resolver->resolve($request, $metadata) as $argument) {
++$count;
$arguments[] = $argument;
}
if (1 < $count && !$metadata->isVariadic()) {
{
$reflector = 2 < \func_num_args() ? func_get_arg(2) : null;
$e = $this->stopwatch->start('controller.get_arguments');
try {
return $this->resolver->getArguments($request, $controller, $reflector);
} finally {
$e->stop();
}
}
}
$event = new ControllerEvent($this, $controller, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
$controller = $event->getController();
// controller arguments
$arguments = $this->argumentResolver->getArguments($request, $controller, $event->getControllerReflector());
$event = new ControllerArgumentsEvent($this, $event, $arguments, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
$response = null;
try {
return $response = $this->handleRaw($request, $type);
} catch (\Throwable $e) {
if ($e instanceof \Error && !$this->handleAllThrowables) {
throw $e;
}
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
) {
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
if (Kernel::VERSION_ID >= 60400) {
$response->send(false);
if (\function_exists('fastcgi_finish_request') && !$this->debug) {
$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 00:47:45 | 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": 245 } } |
INFO 00:47:45 | request |
Matched route "blog_post". { "route": "blog_post", "route_parameters": { "_route": "blog_post", "_controller": "App\\Controller\\BlogController::postShow", "_locale": "sl", "slug": "in-hac-habitasse-platea-dictumst" }, "request_uri": "http://www.coste.codes/public/sl/blog/posts/in-hac-habitasse-platea-dictumst", "method": "GET" } |
DEBUG 00:47:45 | security |
Checking for authenticator support. { "firewall_name": "main", "authenticators": 2 } |
DEBUG 00:47:45 | security |
Checking support on authenticator. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 00:47:45 | security |
Authenticator does not support the request. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 00:47:45 | security |
Checking support on authenticator. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator" } |
DEBUG 00:47:45 | security |
Authenticator does not support the request. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectToPreferredLocaleSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectToPreferredLocaleSubscriber::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\ControllerSubscriber::registerCurrentController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\ControllerSubscriber::registerCurrentController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
INFO 00:47:45 | 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 00:47:45 | 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": 245 } } |
DEBUG 00:47:45 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.slug AS slug_3, t0.summary AS summary_4, t0.content AS content_5, t0.published_at AS published_at_6, t0.author_id AS author_id_7 FROM symfony_demo_post t0 WHERE t0.slug = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.slug AS slug_3, t0.summary AS summary_4, t0.content AS content_5, t0.published_at AS published_at_6, t0.author_id AS author_id_7 FROM symfony_demo_post t0 WHERE t0.slug = ? LIMIT 1", "params": { "1": "in-hac-habitasse-platea-dictumst" }, "types": { "1": 2 } } |
DEBUG 00:47:45 | 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": 245 } } |
CRITICAL 00:47:45 | request |
Uncaught PHP Exception ErrorException: "Warning: file_put_contents(/home/ccoste/codes/coste/www/var/cache/dev/doctrine/orm/Proxies/__CG__AppEntityUser.php.3ec7e826d7ac47a62e3bd264): Failed to open stream: Disk quota exceeded" at ProxyFactory.php line 564 { "exception": {} } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectToPreferredLocaleSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectToPreferredLocaleSubscriber::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\ControllerSubscriber::registerCurrentController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\ControllerSubscriber::registerCurrentController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 00:47:45 | 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 00:47:45 | 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 00:47:45 | event |
Notified event "kernel.controller_arguments" to listener "Container2mjabL0\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Container2mjabL0\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 00:47:45 | 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" } |
INFO 00:47:45 | deprecation |
Deprecated: Constant E_STRICT is deprecated { "exception": {} } |
ErrorException
|
---|
ErrorException: Warning: file_put_contents(/home/ccoste/codes/coste/www/var/cache/dev/doctrine/orm/Proxies/__CG__AppEntityUser.php.3ec7e826d7ac47a62e3bd264): Failed to open stream: Disk quota exceeded at vendor/doctrine/orm/lib/Doctrine/ORM/Proxy/ProxyFactory.php:564 at Doctrine\ORM\Proxy\ProxyFactory->generateProxyClass(object(ClassMetadata), '/home/ccoste/codes/coste/www/var/cache/dev/doctrine/orm/Proxies/__CG__AppEntityUser.php', 'Proxies\\__CG__\\App\\Entity\\User') (vendor/doctrine/orm/lib/Doctrine/ORM/Proxy/ProxyFactory.php:517) at Doctrine\ORM\Proxy\ProxyFactory->loadProxyClass(object(ClassMetadata)) (vendor/doctrine/orm/lib/Doctrine/ORM/Proxy/ProxyFactory.php:467) at Doctrine\ORM\Proxy\ProxyFactory->getProxyFactory('App\\Entity\\User') (vendor/doctrine/orm/lib/Doctrine/ORM/Proxy/ProxyFactory.php:210) at Doctrine\ORM\Proxy\ProxyFactory->getProxy('App\\Entity\\User', array('id' => 2)) (vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php:3050) at Doctrine\ORM\UnitOfWork->createEntity('App\\Entity\\Post', array('id' => 5, 'title' => 'In hac habitasse platea dictumst', 'slug' => 'in-hac-habitasse-platea-dictumst', 'summary' => 'Diatrias tolerare tanquam noster caesium. Aliquam sodales odio id eleifend tristique. Sunt accentores vitare salvus flavum parses. Abnobas sunt hilotaes de placidus vita. Ut suscipit posuere justo at vulputate.', 'content' => 'Lorem ipsum dolor sit amet consectetur adipisicing elit, sed do eiusmod temporincididunt ut labore et **dolore magna aliqua**: Duis aute irure dolor inreprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officiadeserunt mollit anim id est laborum. * Ut enim ad minim veniam * Quis nostrud exercitation *ullamco laboris* * Nisi ut aliquip ex ea commodo consequatPraesent id fermentum lorem. Ut est lorem, fringilla at accumsan nec, euismod atnunc. Aenean mattis sollicitudin mattis. Nullam pulvinar vestibulum bibendum.Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptoshimenaeos. Fusce nulla purus, gravida ac interdum ut, blandit eget ex. Duis aluctus dolor.Integer auctor massa maximus nulla scelerisque accumsan. *Aliquam ac malesuada*ex. Pellentesque tortor magna, vulputate eu vulputate ut, venenatis ac lectus.Praesent ut lacinia sem. Mauris a lectus eget felis mollis feugiat. Quisqueefficitur, mi ut semper pulvinar, urna urna blandit massa, eget tincidunt auguenulla vitae est.Ut posuere aliquet tincidunt. Aliquam erat volutpat. **Class aptent taciti**sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Morbiarcu orci, gravida eget aliquam eu, suscipit et ante. Morbi vulputate metus velipsum finibus, ut dapibus massa feugiat. Vestibulum vel lobortis libero. Sedtincidunt tellus et viverra scelerisque. Pellentesque tincidunt cursus felis.Sed in egestas erat.Aliquam pulvinar interdum massa, vel ullamcorper ante consectetur eu. Vestibulumlacinia ac enim vel placerat. Integer pulvinar magna nec dui malesuada, neccongue nisl dictum. Donec mollis nisl tortor, at congue erat consequat a. Namtempus elit porta, blandit elit vel, viverra lorem. Sed sit amet tellustincidunt, faucibus nisl in, aliquet libero.', 'publishedAt' => object(DateTime), 'author_id' => 2), array('fetchMode' => array('App\Entity\Post' => array('author' => 2)))) (vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php:173) at Doctrine\ORM\Internal\Hydration\SimpleObjectHydrator->hydrateRowData(array('id_1' => 5, 'title_2' => 'In hac habitasse platea dictumst', 'slug_3' => 'in-hac-habitasse-platea-dictumst', 'summary_4' => 'Diatrias tolerare tanquam noster caesium. Aliquam sodales odio id eleifend tristique. Sunt accentores vitare salvus flavum parses. Abnobas sunt hilotaes de placidus vita. Ut suscipit posuere justo at vulputate.', 'content_5' => 'Lorem ipsum dolor sit amet consectetur adipisicing elit, sed do eiusmod temporincididunt ut labore et **dolore magna aliqua**: Duis aute irure dolor inreprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officiadeserunt mollit anim id est laborum. * Ut enim ad minim veniam * Quis nostrud exercitation *ullamco laboris* * Nisi ut aliquip ex ea commodo consequatPraesent id fermentum lorem. Ut est lorem, fringilla at accumsan nec, euismod atnunc. Aenean mattis sollicitudin mattis. Nullam pulvinar vestibulum bibendum.Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptoshimenaeos. Fusce nulla purus, gravida ac interdum ut, blandit eget ex. Duis aluctus dolor.Integer auctor massa maximus nulla scelerisque accumsan. *Aliquam ac malesuada*ex. Pellentesque tortor magna, vulputate eu vulputate ut, venenatis ac lectus.Praesent ut lacinia sem. Mauris a lectus eget felis mollis feugiat. Quisqueefficitur, mi ut semper pulvinar, urna urna blandit massa, eget tincidunt auguenulla vitae est.Ut posuere aliquet tincidunt. Aliquam erat volutpat. **Class aptent taciti**sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Morbiarcu orci, gravida eget aliquam eu, suscipit et ante. Morbi vulputate metus velipsum finibus, ut dapibus massa feugiat. Vestibulum vel lobortis libero. Sedtincidunt tellus et viverra scelerisque. Pellentesque tincidunt cursus felis.Sed in egestas erat.Aliquam pulvinar interdum massa, vel ullamcorper ante consectetur eu. Vestibulumlacinia ac enim vel placerat. Integer pulvinar magna nec dui malesuada, neccongue nisl dictum. Donec mollis nisl tortor, at congue erat consequat a. Namtempus elit porta, blandit elit vel, viverra lorem. Sed sit amet tellustincidunt, faucibus nisl in, aliquet libero.', 'published_at_6' => '2023-02-09 17:26:29', 'author_id_7' => 2), array()) (vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php:65) at Doctrine\ORM\Internal\Hydration\SimpleObjectHydrator->hydrateAllData() (vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php:270) at Doctrine\ORM\Internal\Hydration\AbstractHydrator->hydrateAll(object(Result), object(ResultSetMapping), array()) (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:779) at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load(array('slug' => 'in-hac-habitasse-platea-dictumst'), null, null, array(), null, 1, null) (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:241) at Doctrine\ORM\EntityRepository->findOneBy(array('slug' => 'in-hac-habitasse-platea-dictumst')) (vendor/symfony/doctrine-bridge/ArgumentResolver/EntityValueResolver.php:69) at Symfony\Bridge\Doctrine\ArgumentResolver\EntityValueResolver->resolve(object(Request), object(ArgumentMetadata)) (vendor/symfony/http-kernel/Controller/ArgumentResolver/TraceableValueResolver.php:60) at Symfony\Component\HttpKernel\Controller\ArgumentResolver\TraceableValueResolver->resolve(object(Request), object(ArgumentMetadata)) (vendor/symfony/http-kernel/Controller/ArgumentResolver.php:90) at Symfony\Component\HttpKernel\Controller\ArgumentResolver->getArguments(object(Request), array(object(BlogController), 'postShow'), object(ReflectionMethod)) (vendor/symfony/http-kernel/Controller/TraceableArgumentResolver.php:40) at Symfony\Component\HttpKernel\Controller\TraceableArgumentResolver->getArguments(object(Request), array(object(BlogController), 'postShow'), object(ReflectionMethod)) (vendor/symfony/http-kernel/HttpKernel.php:173) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:76) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:197) 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('/home/ccoste/codes/coste/www/vendor/autoload_runtime.php') (public/index.php:5) |
ErrorException {#1143 #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 00:47:45 | 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": 305 } } |
DEBUG 00:47:45 | 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": 305 } } |
DEBUG 00:47:45 | event |
Notified event "kernel.terminate" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelTerminate". { "event": "kernel.terminate", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate" } |
WARNING 00:47:45 | php |
Uncaught Warning: file_put_contents(/home/ccoste/codes/coste/www/var/cache/dev/profiler/7c/78/1a787c): Failed to open stream: Disk quota exceeded { "exception": {} } |
INFO 00:47:45 | request |
Matched route "blog_post". { "route": "blog_post", "route_parameters": { "_route": "blog_post", "_controller": "App\\Controller\\BlogController::postShow", "_locale": "sl", "slug": "in-hac-habitasse-platea-dictumst" }, "request_uri": "http://www.coste.codes/public/sl/blog/posts/in-hac-habitasse-platea-dictumst", "method": "GET" } |
DEBUG 00:47:45 | security |
Checking for authenticator support. { "firewall_name": "main", "authenticators": 2 } |
DEBUG 00:47:45 | security |
Checking support on authenticator. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 00:47:45 | security |
Authenticator does not support the request. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator" } |
DEBUG 00:47:45 | security |
Checking support on authenticator. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator" } |
DEBUG 00:47:45 | security |
Authenticator does not support the request. { "firewall_name": "main", "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectToPreferredLocaleSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectToPreferredLocaleSubscriber::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\ControllerSubscriber::registerCurrentController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\ControllerSubscriber::registerCurrentController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
INFO 00:47:45 | 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 00:47:45 | 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": 305 } } |
DEBUG 00:47:45 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.slug AS slug_3, t0.summary AS summary_4, t0.content AS content_5, t0.published_at AS published_at_6, t0.author_id AS author_id_7 FROM symfony_demo_post t0 WHERE t0.slug = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.slug AS slug_3, t0.summary AS summary_4, t0.content AS content_5, t0.published_at AS published_at_6, t0.author_id AS author_id_7 FROM symfony_demo_post t0 WHERE t0.slug = ? LIMIT 1", "params": { "1": "in-hac-habitasse-platea-dictumst" }, "types": { "1": 2 } } |
DEBUG 00:47:45 | 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": 305 } } |
CRITICAL 00:47:45 | request |
Uncaught PHP Exception ErrorException: "Warning: file_put_contents(/home/ccoste/codes/coste/www/var/cache/dev/doctrine/orm/Proxies/__CG__AppEntityUser.php.3ec7e826d7ac47a62e3bd264): Failed to open stream: Disk quota exceeded" at ProxyFactory.php line 564 { "exception": {} } |
DEBUG 00:47:45 | event |
Notified event "kernel.exception" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelException". { "event": "kernel.exception", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelException" } |
DEBUG 00:47:45 | event |
Notified event "kernel.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::onKernelException". { "event": "kernel.exception", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ExceptionListener::onKernelException" } |
DEBUG 00:47:45 | event |
Notified event "kernel.exception" to listener "Symfony\WebpackEncoreBundle\EventListener\ExceptionListener::onKernelException". { "event": "kernel.exception", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ExceptionListener::onKernelException" } |
DEBUG 00:47:45 | event |
Notified event "kernel.exception" to listener "App\EventSubscriber\CheckRequirementsSubscriber::handleKernelException". { "event": "kernel.exception", "listener": "App\\EventSubscriber\\CheckRequirementsSubscriber::handleKernelException" } |
DEBUG 00:47:45 | event |
Notified event "kernel.exception" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::logKernelException". { "event": "kernel.exception", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::logKernelException" } |
DEBUG 00:47:45 | event |
Notified event "kernel.exception" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelException". { "event": "kernel.exception", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelException" } |
DEBUG 00:47:45 | event |
Notified event "kernel.exception" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelException". { "event": "kernel.exception", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelException" } |
DEBUG 00:47:45 | event |
Notified event "kernel.exception" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException". { "event": "kernel.exception", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onKernelException" } |
DEBUG 00:47:45 | event |
Listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException" stopped propagation of the event "kernel.exception". { "event": "kernel.exception", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onKernelException" } |
DEBUG 00:47:45 | 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 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 00:47:45 | 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 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 00:47:45 | 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 00:47:45 | 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 00:47:45 | 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 00:47:45 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 00:47:45 | 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 00:47:45 | request |
Uncaught PHP Exception ErrorException: "Warning: file_put_contents(/home/ccoste/codes/coste/www/var/cache/dev/profiler/7c/78/1a787c): Failed to open stream: Disk quota exceeded" at FileProfilerStorage.php line 177 { "exception": {} } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectToPreferredLocaleSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectToPreferredLocaleSubscriber::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\ControllerSubscriber::registerCurrentController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\ControllerSubscriber::registerCurrentController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 00:47:45 | 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 00:47:45 | 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 00:47:45 | event |
Notified event "kernel.controller_arguments" to listener "Container2mjabL0\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Container2mjabL0\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 00:47:45 | 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" } |
INFO 00:47:45 | deprecation |
Deprecated: Constant E_STRICT is deprecated { "exception": {} } |
DEBUG 00:47:45 | 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 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 00:47:45 | 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 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 00:47:45 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 00:47:45 | 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 00:47:45 | 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 00:47:45 | 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 00:47:45 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 00:47:45 | 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 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectToPreferredLocaleSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectToPreferredLocaleSubscriber::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.request" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\ControllerSubscriber::registerCurrentController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\ControllerSubscriber::registerCurrentController" } |
DEBUG 00:47:45 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 00:47:45 | 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 00:47:45 | 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 00:47:45 | event |
Notified event "kernel.controller_arguments" to listener "Container2mjabL0\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Container2mjabL0\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 00:47:45 | 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/7c/78/1a787c): 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)) |