unlink(): Argument #1 ($filename) must not contain any null bytes (500 Internal Server Error)

Symfony Exception

unlink(): Argument #1 ($filename) must not contain any null bytes

Exception

ValueError

  1. if ($csvTime >= $minimalProfileTimestamp) {
  2. break;
  3. }
  4. @unlink($this->getFilename($csvToken));
  5. $offset += \strlen($line);
  6. }
  7. fclose($handle);
  8. file_put_contents($file.'.offset', $offset);
  1. if ($csvTime >= $minimalProfileTimestamp) {
  2. break;
  3. }
  4. @unlink($this->getFilename($csvToken));
  5. $offset += \strlen($line);
  6. }
  7. fclose($handle);
  8. file_put_contents($file.'.offset', $offset);
  1. $profile->getVirtualType() ?? 'request',
  2. ], ',', '"', '\\');
  3. fclose($file);
  4. if (1 === mt_rand(1, 10)) {
  5. $this->removeExpiredProfiles();
  6. }
  7. }
  8. return true;
  9. }
  1. if ($collector instanceof LateDataCollectorInterface) {
  2. $collector->lateCollect();
  3. }
  4. }
  5. if (!($ret = $this->storage->write($profile)) && null !== $this->logger) {
  6. $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => $this->storage::class]);
  7. }
  8. return $ret;
  9. }
  1. }
  2. }
  3. // save profiles
  4. foreach ($this->profiles as $request) {
  5. $this->profiler->saveProfile($this->profiles[$request]);
  6. }
  7. $this->profiles = new \SplObjectStorage();
  8. $this->parents = new \SplObjectStorage();
  9. }
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. /**
  2. * @return void
  3. */
  4. public function terminate(Request $request, Response $response)
  5. {
  6. $this->dispatcher->dispatch(new TerminateEvent($this, $request, $response), KernelEvents::TERMINATE);
  7. }
  8. /**
  9. * @internal
  10. */
in vendor/symfony/http-kernel/Kernel.php -> terminate (line 157)
  1. if (false === $this->booted) {
  2. return;
  3. }
  4. if ($this->getHttpKernel() instanceof TerminableInterface) {
  5. $this->getHttpKernel()->terminate($request, $response);
  6. }
  7. }
  8. /**
  9. * @return void
  1. } else {
  2. $response->send();
  3. }
  4. if ($this->kernel instanceof TerminableInterface) {
  5. $this->kernel->terminate($this->request, $response);
  6. }
  7. return 0;
  8. }
  9. }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/home/okbqknl/lms/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs 1

Level Channel Message
DEBUG 04:24:09 php Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/okbqknl/lms/vendor/symfony/error-handler/DebugClassLoader.php",
        "line": 294,
        "trace": [
            {
                "file": "/home/okbqknl/lms/vendor/doctrine/doctrine-bundle/src/DoctrineBundle.php",
                "line": 132,
                "function": "loadClass",
                "class": "Symfony\\Component\\ErrorHandler\\DebugClassLoader",
                "type": "->"
            }
        ],
        "count": 45
    }
}
DEBUG 04:24:10 event Notified event "kernel.terminate" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelTerminate".
{
    "event": "kernel.terminate",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate"
}
INFO 04:24:10 request Matched route "app_login".
{
    "route": "app_login",
    "route_parameters": {
        "_route": "app_login",
        "_controller": "App\\Controller\\SecurityController::login"
    },
    "request_uri": "http://www.la-pmn.mon-lms.com/login",
    "method": "GET"
}
DEBUG 04:24:10 security Checking for authenticator support.
{
    "firewall_name": "main",
    "authenticators": 2
}
DEBUG 04:24:10 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\AppAuthenticator"
}
DEBUG 04:24:10 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\AppAuthenticator"
}
DEBUG 04:24:10 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
}
DEBUG 04:24:10 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequestPrettyUrls".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "App\EventSubscriber\UserActivitySubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\UserActivitySubscriber::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 04:24:10 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 04:24:10 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 04:24:10 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 04:24:10 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 04:24:10 event Notified event "kernel.controller_arguments" to listener "ContainerFzO6e0f\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerFzO6e0f\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 04:24:10 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 04:24:10 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 04:24:10 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 04:24:10 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 04:24:10 event Notified event "kernel.response" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse"
}
DEBUG 04:24:10 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 04:24:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 04:24:10 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 04:24:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 04:24:10 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 04:24:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 04:24:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 04:24:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 04:24:10 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 04:24:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 04:24:10 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 04:24:10 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 04:24:10 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 04:24:10 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 04:24:10 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 04:24:10 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 04:24:10 request Uncaught PHP Exception ValueError: "unlink(): Argument #1 ($filename) must not contain any null bytes" at FileProfilerStorage.php line 351
{
    "exception": {}
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequestPrettyUrls".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "App\EventSubscriber\UserActivitySubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\UserActivitySubscriber::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 04:24:10 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 04:24:10 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 04:24:10 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 04:24:10 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 04:24:10 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 04:24:10 event Notified event "kernel.controller_arguments" to listener "ContainerFzO6e0f\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerFzO6e0f\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 04:24:10 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"
}

Stack Trace

ValueError
ValueError:
unlink(): Argument #1 ($filename) must not contain any null bytes

  at vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:351
  at unlink(binary string)
     (vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:351)
  at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->removeExpiredProfiles()
     (vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:200)
  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/okbqknl/lms/vendor/autoload_runtime.php')
     (public/index.php:5)                
Symfony\Component\VarDumper\Cloner\Data objects are immutable. (500 Internal Server Error)

Symfony Exception

Symfony\Component\VarDumper\Cloner\Data objects are immutable.

Exception

BadMethodCallException

  1. return $this->__get($key);
  2. }
  3. public function offsetSet(mixed $key, mixed $value): void
  4. {
  5. throw new \BadMethodCallException(self::class.' objects are immutable.');
  6. }
  7. public function offsetUnset(mixed $key): void
  8. {
  9. throw new \BadMethodCallException(self::class.' objects are immutable.');
  1. /**
  2. * @see TraceableEventDispatcher
  3. */
  4. public function setCalledListeners(array $listeners, ?string $dispatcher = null): void
  5. {
  6. $this->data[$dispatcher ?? $this->defaultDispatcher]['called_listeners'] = $listeners;
  7. }
  8. /**
  9. * @see TraceableEventDispatcher
  10. */
  1. foreach ($this->dispatchers as $name => $dispatcher) {
  2. if (!$dispatcher instanceof TraceableEventDispatcher) {
  3. continue;
  4. }
  5. $this->setCalledListeners($dispatcher->getCalledListeners($this->currentRequest), $name);
  6. $this->setNotCalledListeners($dispatcher->getNotCalledListeners($this->currentRequest), $name);
  7. $this->setOrphanedEvents($dispatcher->getOrphanedEvents($this->currentRequest), $name);
  8. }
  9. $this->data = $this->cloneVar($this->data);
  1. public function saveProfile(Profile $profile): bool
  2. {
  3. // late collect
  4. foreach ($profile->getCollectors() as $collector) {
  5. if ($collector instanceof LateDataCollectorInterface) {
  6. $collector->lateCollect();
  7. }
  8. }
  9. if (!($ret = $this->storage->write($profile)) && null !== $this->logger) {
  10. $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => $this->storage::class]);
  1. }
  2. }
  3. // save profiles
  4. foreach ($this->profiles as $request) {
  5. $this->profiler->saveProfile($this->profiles[$request]);
  6. }
  7. $this->profiles = new \SplObjectStorage();
  8. $this->parents = new \SplObjectStorage();
  9. }
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. /**
  2. * @return void
  3. */
  4. public function terminate(Request $request, Response $response)
  5. {
  6. $this->dispatcher->dispatch(new TerminateEvent($this, $request, $response), KernelEvents::TERMINATE);
  7. }
  8. /**
  9. * @internal
  10. */
  1. }
  2. $response->sendHeaders();
  3. $response->sendContent();
  4. $this->terminate($request, $response);
  5. }
  6. /**
  7. * Handles a request to convert it to a response.
  8. *
  1. if ($hasRun) {
  2. throw $e;
  3. }
  4. $hasRun = true;
  5. $kernel->terminateWithException($e, $request);
  6. };
  7. }
  8. } elseif ($event instanceof ConsoleEvent && $app = $event->getCommand()->getApplication()) {
  9. $output = $event->getOutput();
  10. if ($output instanceof ConsoleOutputInterface) {
in /home/okbqknl/lms/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 538)
  1. $this->exceptionHandler = null;
  2. }
  3. try {
  4. if (null !== $exceptionHandler) {
  5. $exceptionHandler($exception);
  6. return;
  7. }
  8. $handlerException ??= $exception;
  9. } catch (\Throwable $handlerException) {
ErrorHandler->handleException(object(ValueError))

Stack Trace

BadMethodCallException
BadMethodCallException:
Symfony\Component\VarDumper\Cloner\Data objects are immutable.

  at /home/okbqknl/lms/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\\UX\\Turbo\\Request\\RequestListener::__invoke', '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' => 35, 'pretty' => 'Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::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' => 1, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'App\\EventSubscriber\\UserActivitySubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.controller', 'priority' => 128, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::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' => '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' => 'ContainerFzO6e0f\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments', 'stub' => object(ClassStub)), array('event' => 'kernel.controller_arguments', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments', 'stub' => object(ClassStub)), array('event' => 'debug.security.authorization.vote', 'priority' => 0, 'pretty' => 'Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote', 'stub' => object(ClassStub)), array('event' => 'debug.security.authorization.vote', 'priority' => 0, 'pretty' => 'Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote', 'stub' => object(ClassStub)), array('event' => 'debug.security.authorization.vote', 'priority' => 0, 'pretty' => 'Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 2048, 'pretty' => 'Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse', '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\\WebLink\\EventListener\\AddLinkHeaderListener::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' => -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)), array('event' => 'kernel.terminate', 'priority' => -1024, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate', 'stub' => object(ClassStub)), array('event' => 'kernel.exception', 'priority' => 0, 'pretty' => 'Symfony\\WebpackEncoreBundle\\EventListener\\ExceptionListener::onKernelException', 'stub' => object(ClassStub)), array('event' => 'kernel.exception', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::logKernelException', 'stub' => object(ClassStub)), array('event' => 'kernel.exception', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelException', 'stub' => object(ClassStub)), array('event' => 'kernel.exception', 'priority' => -64, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\ExceptionListener::onKernelException', 'stub' => object(ClassStub)), array('event' => 'kernel.exception', 'priority' => -64, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelException', 'stub' => object(ClassStub)), array('event' => 'kernel.exception', 'priority' => -128, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onKernelException', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 2048, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 256, 'pretty' => 'Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke', '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' => 35, 'pretty' => 'Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::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' => 1, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'App\\EventSubscriber\\UserActivitySubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.controller', 'priority' => 128, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::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' => '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' => 'ContainerFzO6e0f\\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' => 2048, 'pretty' => 'Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse', '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\\WebLink\\EventListener\\AddLinkHeaderListener::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' => -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)), array('event' => 'kernel.response', 'priority' => 2048, 'pretty' => 'Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.terminate', 'priority' => -1024, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate', 'stub' => object(ClassStub))))
     (/home/okbqknl/lms/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\\UX\\Turbo\\Request\\RequestListener::__invoke', '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' => 35, 'pretty' => 'Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::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' => 1, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'App\\EventSubscriber\\UserActivitySubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.controller', 'priority' => 128, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::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' => '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' => 'ContainerFzO6e0f\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments', 'stub' => object(ClassStub)), array('event' => 'kernel.controller_arguments', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments', 'stub' => object(ClassStub)), array('event' => 'debug.security.authorization.vote', 'priority' => 0, 'pretty' => 'Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote', 'stub' => object(ClassStub)), array('event' => 'debug.security.authorization.vote', 'priority' => 0, 'pretty' => 'Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote', 'stub' => object(ClassStub)), array('event' => 'debug.security.authorization.vote', 'priority' => 0, 'pretty' => 'Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 2048, 'pretty' => 'Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse', '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\\WebLink\\EventListener\\AddLinkHeaderListener::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' => -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)), array('event' => 'kernel.terminate', 'priority' => -1024, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate', 'stub' => object(ClassStub)), array('event' => 'kernel.exception', 'priority' => 0, 'pretty' => 'Symfony\\WebpackEncoreBundle\\EventListener\\ExceptionListener::onKernelException', 'stub' => object(ClassStub)), array('event' => 'kernel.exception', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::logKernelException', 'stub' => object(ClassStub)), array('event' => 'kernel.exception', 'priority' => 0, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelException', 'stub' => object(ClassStub)), array('event' => 'kernel.exception', 'priority' => -64, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\ExceptionListener::onKernelException', 'stub' => object(ClassStub)), array('event' => 'kernel.exception', 'priority' => -64, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelException', 'stub' => object(ClassStub)), array('event' => 'kernel.exception', 'priority' => -128, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onKernelException', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 2048, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 256, 'pretty' => 'Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke', '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' => 35, 'pretty' => 'Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::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' => 1, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'App\\EventSubscriber\\UserActivitySubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.request', 'priority' => 0, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest', 'stub' => object(ClassStub)), array('event' => 'kernel.controller', 'priority' => 128, 'pretty' => 'EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::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' => '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' => 'ContainerFzO6e0f\\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' => 2048, 'pretty' => 'Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse', '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\\WebLink\\EventListener\\AddLinkHeaderListener::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' => -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)), array('event' => 'kernel.response', 'priority' => 2048, 'pretty' => 'Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.response', 'priority' => 0, 'pretty' => 'Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse', 'stub' => object(ClassStub)), array('event' => 'kernel.terminate', 'priority' => -1024, 'pretty' => 'Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate', 'stub' => object(ClassStub))), 'event_dispatcher')
     (/home/okbqknl/lms/vendor/symfony/http-kernel/DataCollector/EventDataCollector.php:73)
  at Symfony\Component\HttpKernel\DataCollector\EventDataCollector->lateCollect()
     (/home/okbqknl/lms/vendor/symfony/http-kernel/Profiler/Profiler.php:100)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile(object(Profile))
     (/home/okbqknl/lms/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:135)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (/home/okbqknl/lms/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (/home/okbqknl/lms/vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener)), 'kernel.terminate', object(TerminateEvent))
     (/home/okbqknl/lms/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (/home/okbqknl/lms/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (/home/okbqknl/lms/vendor/symfony/http-kernel/HttpKernel.php:115)
  at Symfony\Component\HttpKernel\HttpKernel->terminate(object(Request), object(Response))
     (/home/okbqknl/lms/vendor/symfony/http-kernel/HttpKernel.php:142)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException(object(ValueError), object(Request))
     (/home/okbqknl/lms/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:84)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}(object(ValueError))
     (/home/okbqknl/lms/vendor/symfony/error-handler/ErrorHandler.php:538)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException(object(ValueError))