Deprecated: Constant E_STRICT is deprecated in /home/flyerprinting/public_html/dev/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /home/flyerprinting/public_html/dev/vendor/symfony/error-handler/ErrorHandler.php on line 76
Warning: ini_set(): Session ini settings cannot be changed after headers have already been sent (500 Internal Server Error)

Symfony Exception

ErrorException ErrorException ErrorException

HTTP 500 Internal Server Error

Warning: ini_set(): Session ini settings cannot be changed after headers have already been sent

Exceptions 3

ErrorException

Show exception properties
ErrorException {#1142
  #severity: E_WARNING
}
  1.         if ($baseDir && !is_dir($baseDir) && !@mkdir($baseDir0777true) && !is_dir($baseDir)) {
  2.             throw new \RuntimeException(sprintf('Session Storage was not able to create directory "%s".'$baseDir));
  3.         }
  4.         if ($savePath !== \ini_get('session.save_path')) {
  5.             ini_set('session.save_path'$savePath);
  6.         }
  7.         if ('files' !== \ini_get('session.save_handler')) {
  8.             ini_set('session.save_handler''files');
  9.         }
  10.     }
  1.         if (isset($container->privates['session.factory'])) {
  2.             return $container->privates['session.factory'];
  3.         }
  4.         return $container->privates['session.factory'] = new \Symfony\Component\HttpFoundation\Session\SessionFactory(($container->services['request_stack'] ??= new \Symfony\Component\HttpFoundation\RequestStack()), new \Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorageFactory($container->parameters['session.storage.options'], new \Symfony\Component\HttpFoundation\Session\Storage\Handler\StrictSessionHandler(new \Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeFileSessionHandler(($container->targetDir.''.'/../var/sessions/dev'))), new \Symfony\Component\HttpFoundation\Session\Storage\MetadataBag('_sf2_meta'0), true), [$a'onSessionUsage']);
  5.     }
  6. }
  1.     }
  2.     protected function load($file$lazyLoad true): mixed
  3.     {
  4.         if (class_exists($class __NAMESPACE__.'\\'.$filefalse)) {
  5.             return $class::do($this$lazyLoad);
  6.         }
  7.         if ('.' === $file[-4]) {
  8.             $class substr($class0, -4);
  9.         } else {
  1.         }
  2.         if (null === $method) {
  3.             return false !== $registry $this->{$registry}[$id] ?? null null;
  4.         }
  5.         if (false !== $registry) {
  6.             return $this->{$registry}[$id] ??= $load $this->load($method) : $this->{$method}($this);
  7.         }
  8.         if (!$load) {
  9.             return $this->{$method}($this);
  10.         }
  1.     public function get(string $id): mixed
  2.     {
  3.         return match (\count($this->serviceMap[$id] ?? [])) {
  4.             => parent::get($id),
  5.             => $this->serviceMap[$id][0],
  6.             default => ($this->factory)(...$this->serviceMap[$id]),
  7.         };
  8.     }
  9.     public function getProvidedServices(): array
  10.     {
  1. class SessionListener extends AbstractSessionListener
  2. {
  3.     protected function getSession(): ?SessionInterface
  4.     {
  5.         if ($this->container->has('session_factory')) {
  6.             return $this->container->get('session_factory')->createSession();
  7.         }
  8.         return null;
  9.     }
  10. }
  1.             $request->setSessionFactory(function () use ($request) {
  2.                 // Prevent calling `$this->getSession()` twice in case the Request (and the below factory) is cloned
  3.                 static $sess;
  4.                 if (!$sess) {
  5.                     $sess $this->getSession();
  6.                     $request->setSession($sess);
  7.                     /*
  8.                      * For supporting sessions in php runtime with runners like roadrunner or swoole, the session
  9.                      * cookie needs to be read from the cookie bag and set on the session storage.
in /home/flyerprinting/public_html/dev/vendor/symfony/http-foundation/Request.php -> {closure:Symfony\Component\HttpKernel\EventListener\AbstractSessionListener::onKernelRequest():68} (line 725)
  1.      */
  2.     public function getSession(): SessionInterface
  3.     {
  4.         $session $this->session;
  5.         if (!$session instanceof SessionInterface && null !== $session) {
  6.             $this->setSession($session $session());
  7.         }
  8.         if (null === $session) {
  9.             throw new SessionNotFoundException('Session has not been set.');
  10.         }
  1.      * previous requests.
  2.      */
  3.     public function hasPreviousSession(): bool
  4.     {
  5.         // the check for $this->session avoids malicious users trying to fake a session cookie with proper name
  6.         return $this->hasSession() && $this->cookies->has($this->getSession()->getName());
  7.     }
  8.     /**
  9.      * Whether the request contains a Session object.
  10.      *
  1.         if (null !== $this->matcher && !$this->matcher->matches($request)) {
  2.             return;
  3.         }
  4.         $session $request->hasPreviousSession() ? $request->getSession() : null;
  5.         if ($session instanceof Session) {
  6.             $usageIndexValue $usageIndexReference = &$session->getUsageIndex();
  7.             $usageIndexReference \PHP_INT_MIN;
  8.         }
  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.     private function filterResponse(Response $responseRequest $requestint $type): Response
  3.     {
  4.         $event = new ResponseEvent($this$request$type$response);
  5.         $this->dispatcher->dispatch($eventKernelEvents::RESPONSE);
  6.         $this->finishRequest($request$type);
  7.         return $event->getResponse();
  8.     }
  1.         // request
  2.         $event = new RequestEvent($this$request$type);
  3.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  4.         if ($event->hasResponse()) {
  5.             return $this->filterResponse($event->getResponse(), $request$type);
  6.         }
  7.         // load controller
  8.         if (false === $controller $this->resolver->getController($request)) {
  9.             throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.'$request->getPathInfo()));
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         }
  2.         $request $this->duplicateRequest($throwable$event->getRequest());
  3.         try {
  4.             $response $event->getKernel()->handle($requestHttpKernelInterface::SUB_REQUESTfalse);
  5.         } catch (\Exception $e) {
  6.             $f FlattenException::createFromThrowable($e);
  7.             $this->logException($esprintf('Exception thrown when handling an exception (%s: %s at %s line %s)'$f->getClass(), $f->getMessage(), basename($e->getFile()), $e->getLine()));
  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.      * Handles a throwable by trying to convert it to a Response.
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$e);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
  1.         if ($pop $request !== $this->requestStack->getMainRequest()) {
  2.             $this->requestStack->push($request);
  3.         }
  4.         try {
  5.             $response $this->handleThrowable($exception$requestself::MAIN_REQUEST);
  6.         } finally {
  7.             if ($pop) {
  8.                 $this->requestStack->pop();
  9.             }
  10.         }
  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/flyerprinting/public_html/dev/vendor/symfony/error-handler/ErrorHandler.php :: {closure:Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure():76} (line 531)
  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(ErrorException))

ErrorException

Warning: ini_set(): Session ini settings cannot be changed after headers have already been sent

  1.         if ($baseDir && !is_dir($baseDir) && !@mkdir($baseDir0777true) && !is_dir($baseDir)) {
  2.             throw new \RuntimeException(sprintf('Session Storage was not able to create directory "%s".'$baseDir));
  3.         }
  4.         if ($savePath !== \ini_get('session.save_path')) {
  5.             ini_set('session.save_path'$savePath);
  6.         }
  7.         if ('files' !== \ini_get('session.save_handler')) {
  8.             ini_set('session.save_handler''files');
  9.         }
  10.     }
  1.         if (isset($container->privates['session.factory'])) {
  2.             return $container->privates['session.factory'];
  3.         }
  4.         return $container->privates['session.factory'] = new \Symfony\Component\HttpFoundation\Session\SessionFactory(($container->services['request_stack'] ??= new \Symfony\Component\HttpFoundation\RequestStack()), new \Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorageFactory($container->parameters['session.storage.options'], new \Symfony\Component\HttpFoundation\Session\Storage\Handler\StrictSessionHandler(new \Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeFileSessionHandler(($container->targetDir.''.'/../var/sessions/dev'))), new \Symfony\Component\HttpFoundation\Session\Storage\MetadataBag('_sf2_meta'0), true), [$a'onSessionUsage']);
  5.     }
  6. }
  1.     }
  2.     protected function load($file$lazyLoad true): mixed
  3.     {
  4.         if (class_exists($class __NAMESPACE__.'\\'.$filefalse)) {
  5.             return $class::do($this$lazyLoad);
  6.         }
  7.         if ('.' === $file[-4]) {
  8.             $class substr($class0, -4);
  9.         } else {
  1.         }
  2.         if (null === $method) {
  3.             return false !== $registry $this->{$registry}[$id] ?? null null;
  4.         }
  5.         if (false !== $registry) {
  6.             return $this->{$registry}[$id] ??= $load $this->load($method) : $this->{$method}($this);
  7.         }
  8.         if (!$load) {
  9.             return $this->{$method}($this);
  10.         }
  1.     public function get(string $id): mixed
  2.     {
  3.         return match (\count($this->serviceMap[$id] ?? [])) {
  4.             => parent::get($id),
  5.             => $this->serviceMap[$id][0],
  6.             default => ($this->factory)(...$this->serviceMap[$id]),
  7.         };
  8.     }
  9.     public function getProvidedServices(): array
  10.     {
  1. class SessionListener extends AbstractSessionListener
  2. {
  3.     protected function getSession(): ?SessionInterface
  4.     {
  5.         if ($this->container->has('session_factory')) {
  6.             return $this->container->get('session_factory')->createSession();
  7.         }
  8.         return null;
  9.     }
  10. }
  1.             $request->setSessionFactory(function () use ($request) {
  2.                 // Prevent calling `$this->getSession()` twice in case the Request (and the below factory) is cloned
  3.                 static $sess;
  4.                 if (!$sess) {
  5.                     $sess $this->getSession();
  6.                     $request->setSession($sess);
  7.                     /*
  8.                      * For supporting sessions in php runtime with runners like roadrunner or swoole, the session
  9.                      * cookie needs to be read from the cookie bag and set on the session storage.
in /home/flyerprinting/public_html/dev/vendor/symfony/http-foundation/Request.php -> {closure:Symfony\Component\HttpKernel\EventListener\AbstractSessionListener::onKernelRequest():68} (line 725)
  1.      */
  2.     public function getSession(): SessionInterface
  3.     {
  4.         $session $this->session;
  5.         if (!$session instanceof SessionInterface && null !== $session) {
  6.             $this->setSession($session $session());
  7.         }
  8.         if (null === $session) {
  9.             throw new SessionNotFoundException('Session has not been set.');
  10.         }
  1.      * previous requests.
  2.      */
  3.     public function hasPreviousSession(): bool
  4.     {
  5.         // the check for $this->session avoids malicious users trying to fake a session cookie with proper name
  6.         return $this->hasSession() && $this->cookies->has($this->getSession()->getName());
  7.     }
  8.     /**
  9.      * Whether the request contains a Session object.
  10.      *
  1.         if (null !== $this->matcher && !$this->matcher->matches($request)) {
  2.             return;
  3.         }
  4.         $session $request->hasPreviousSession() ? $request->getSession() : null;
  5.         if ($session instanceof Session) {
  6.             $usageIndexValue $usageIndexReference = &$session->getUsageIndex();
  7.             $usageIndexReference \PHP_INT_MIN;
  8.         }
  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.     private function filterResponse(Response $responseRequest $requestint $type): Response
  3.     {
  4.         $event = new ResponseEvent($this$request$type$response);
  5.         $this->dispatcher->dispatch($eventKernelEvents::RESPONSE);
  6.         $this->finishRequest($request$type);
  7.         return $event->getResponse();
  8.     }
  1.         // request
  2.         $event = new RequestEvent($this$request$type);
  3.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  4.         if ($event->hasResponse()) {
  5.             return $this->filterResponse($event->getResponse(), $request$type);
  6.         }
  7.         // load controller
  8.         if (false === $controller $this->resolver->getController($request)) {
  9.             throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.'$request->getPathInfo()));
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         }
  2.         $request $this->duplicateRequest($throwable$event->getRequest());
  3.         try {
  4.             $response $event->getKernel()->handle($requestHttpKernelInterface::SUB_REQUESTfalse);
  5.         } catch (\Exception $e) {
  6.             $f FlattenException::createFromThrowable($e);
  7.             $this->logException($esprintf('Exception thrown when handling an exception (%s: %s at %s line %s)'$f->getClass(), $f->getMessage(), basename($e->getFile()), $e->getLine()));
  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.      * Handles a throwable by trying to convert it to a Response.
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$e);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
  1.                 $this->finishRequest($request$type);
  2.                 throw $e;
  3.             }
  4.             return $response $this->handleThrowable($e$request$type);
  5.         } finally {
  6.             $this->requestStack->pop();
  7.             if ($response instanceof StreamedResponse && $callback $response->getCallback()) {
  8.                 $requestStack $this->requestStack;
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/flyerprinting/public_html/dev/vendor/autoload_runtime.php') in /home/flyerprinting/public_html/dev/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. };

ErrorException

Warning: ini_set(): Session ini settings cannot be changed after headers have already been sent

  1.         if ($baseDir && !is_dir($baseDir) && !@mkdir($baseDir0777true) && !is_dir($baseDir)) {
  2.             throw new \RuntimeException(sprintf('Session Storage was not able to create directory "%s".'$baseDir));
  3.         }
  4.         if ($savePath !== \ini_get('session.save_path')) {
  5.             ini_set('session.save_path'$savePath);
  6.         }
  7.         if ('files' !== \ini_get('session.save_handler')) {
  8.             ini_set('session.save_handler''files');
  9.         }
  10.     }
  1.         if (isset($container->privates['session.factory'])) {
  2.             return $container->privates['session.factory'];
  3.         }
  4.         return $container->privates['session.factory'] = new \Symfony\Component\HttpFoundation\Session\SessionFactory(($container->services['request_stack'] ??= new \Symfony\Component\HttpFoundation\RequestStack()), new \Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorageFactory($container->parameters['session.storage.options'], new \Symfony\Component\HttpFoundation\Session\Storage\Handler\StrictSessionHandler(new \Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeFileSessionHandler(($container->targetDir.''.'/../var/sessions/dev'))), new \Symfony\Component\HttpFoundation\Session\Storage\MetadataBag('_sf2_meta'0), true), [$a'onSessionUsage']);
  5.     }
  6. }
  1.             $file .= '.php';
  2.         }
  3.         $service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
  4.         return class_exists($classfalse) ? $class::do($this$lazyLoad) : $service;
  5.     }
  6.     protected function createProxy($class\Closure $factory)
  7.     {
  8.         class_exists($classfalse) || require __DIR__.'/'.$class.'.php';
  1.         }
  2.         if (null === $method) {
  3.             return false !== $registry $this->{$registry}[$id] ?? null null;
  4.         }
  5.         if (false !== $registry) {
  6.             return $this->{$registry}[$id] ??= $load $this->load($method) : $this->{$method}($this);
  7.         }
  8.         if (!$load) {
  9.             return $this->{$method}($this);
  10.         }
  1.     public function get(string $id): mixed
  2.     {
  3.         return match (\count($this->serviceMap[$id] ?? [])) {
  4.             => parent::get($id),
  5.             => $this->serviceMap[$id][0],
  6.             default => ($this->factory)(...$this->serviceMap[$id]),
  7.         };
  8.     }
  9.     public function getProvidedServices(): array
  10.     {
  1. class SessionListener extends AbstractSessionListener
  2. {
  3.     protected function getSession(): ?SessionInterface
  4.     {
  5.         if ($this->container->has('session_factory')) {
  6.             return $this->container->get('session_factory')->createSession();
  7.         }
  8.         return null;
  9.     }
  10. }
  1.             $request->setSessionFactory(function () use ($request) {
  2.                 // Prevent calling `$this->getSession()` twice in case the Request (and the below factory) is cloned
  3.                 static $sess;
  4.                 if (!$sess) {
  5.                     $sess $this->getSession();
  6.                     $request->setSession($sess);
  7.                     /*
  8.                      * For supporting sessions in php runtime with runners like roadrunner or swoole, the session
  9.                      * cookie needs to be read from the cookie bag and set on the session storage.
in /home/flyerprinting/public_html/dev/vendor/symfony/http-foundation/Request.php -> {closure:Symfony\Component\HttpKernel\EventListener\AbstractSessionListener::onKernelRequest():68} (line 725)
  1.      */
  2.     public function getSession(): SessionInterface
  3.     {
  4.         $session $this->session;
  5.         if (!$session instanceof SessionInterface && null !== $session) {
  6.             $this->setSession($session $session());
  7.         }
  8.         if (null === $session) {
  9.             throw new SessionNotFoundException('Session has not been set.');
  10.         }
  1.      * previous requests.
  2.      */
  3.     public function hasPreviousSession(): bool
  4.     {
  5.         // the check for $this->session avoids malicious users trying to fake a session cookie with proper name
  6.         return $this->hasSession() && $this->cookies->has($this->getSession()->getName());
  7.     }
  8.     /**
  9.      * Whether the request contains a Session object.
  10.      *
  1.             $this->dispatcher->addListener(KernelEvents::RESPONSE$this->onKernelResponse(...));
  2.             $this->registered true;
  3.         }
  4.         $request $event->getRequest();
  5.         $session $request->hasPreviousSession() ? $request->getSession() : null;
  6.         $request->attributes->set('_security_firewall_run'$this->sessionKey);
  7.         if (null !== $session) {
  8.             $usageIndexValue $session instanceof Session $usageIndexReference = &$session->getUsageIndex() : 0;
  1.     public function authenticate(RequestEvent $event): void
  2.     {
  3.         $startTime microtime(true);
  4.         try {
  5.             $this->listener->authenticate($event);
  6.         } catch (LazyResponseException $e) {
  7.             $this->response $e->getResponse();
  8.             throw $e;
  9.         } finally {
  1. abstract class AbstractListener implements FirewallListenerInterface
  2. {
  3.     final public function __invoke(RequestEvent $event): void
  4.     {
  5.         if (false !== $this->supports($event->getRequest())) {
  6.             $this->authenticate($event);
  7.         }
  8.     }
  9.     public static function getPriority(): int
  10.     {
  1.                 }, $listenerFirewallContext::class)();
  2.                 $listener($event);
  3.             } else {
  4.                 $wrappedListener $listener instanceof FirewallListenerInterface ? new WrappedLazyListener($listener) : new WrappedListener($listener);
  5.                 $wrappedListener($event);
  6.                 $wrappedListeners[] = $wrappedListener->getInfo();
  7.                 if (!$authenticatorManagerListener && $listener instanceof TraceableAuthenticatorManagerListener) {
  8.                     $authenticatorManagerListener $listener;
  9.                 }
  10.             }
  1.             if (null !== $logoutListener) {
  2.                 yield $logoutListener;
  3.             }
  4.         };
  5.         $this->callListeners($event$authenticationListeners());
  6.     }
  7.     /**
  8.      * @return void
  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.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/flyerprinting/public_html/dev/vendor/autoload_runtime.php') in /home/flyerprinting/public_html/dev/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. };

Stack Traces 3

[3/3] ErrorException
ErrorException:
Warning: ini_set(): Session ini settings cannot be changed after headers have already been sent

  at /home/flyerprinting/public_html/dev/vendor/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php:49
  at Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeFileSessionHandler->__construct('/home/flyerprinting/public_html/dev/var/cache/dev/../var/sessions/dev')
     (/home/flyerprinting/public_html/dev/var/cache/dev/ContainerYg1SG59/getSession_FactoryService.php:37)
  at ContainerYg1SG59\getSession_FactoryService::do(object(App_KernelDevDebugContainer), true)
     (/home/flyerprinting/public_html/dev/var/cache/dev/ContainerYg1SG59/App_KernelDevDebugContainer.php:379)
  at ContainerYg1SG59\App_KernelDevDebugContainer->load('getSession_FactoryService')
     (/home/flyerprinting/public_html/dev/vendor/symfony/dependency-injection/Container.php:403)
  at Symfony\Component\DependencyInjection\Container->getService('privates', 'session.factory', 'getSession_FactoryService', true)
     (/home/flyerprinting/public_html/dev/vendor/symfony/dependency-injection/Argument/ServiceLocator.php:40)
  at Symfony\Component\DependencyInjection\Argument\ServiceLocator->get('session_factory')
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/EventListener/SessionListener.php:28)
  at Symfony\Component\HttpKernel\EventListener\SessionListener->getSession()
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php:73)
  at Symfony\Component\HttpKernel\EventListener\AbstractSessionListener->{closure:Symfony\Component\HttpKernel\EventListener\AbstractSessionListener::onKernelRequest():68}()
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-foundation/Request.php:725)
  at Symfony\Component\HttpFoundation\Request->getSession()
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-foundation/Request.php:742)
  at Symfony\Component\HttpFoundation\Request->hasPreviousSession()
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:100)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelResponse(object(ResponseEvent), 'kernel.response', object(TraceableEventDispatcher))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ResponseEvent), 'kernel.response', object(TraceableEventDispatcher))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.response', object(ResponseEvent))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ResponseEvent), 'kernel.response')
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ResponseEvent), 'kernel.response')
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/HttpKernel.php:214)
  at Symfony\Component\HttpKernel\HttpKernel->filterResponse(object(RedirectResponse), object(Request), 2)
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/HttpKernel.php:160)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 2)
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 2, false)
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/EventListener/ErrorListener.php:117)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->onKernelException(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.exception', object(ExceptionEvent))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/HttpKernel.php:239)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable(object(ErrorException), object(Request), 1)
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/HttpKernel.php:132)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException(object(ErrorException), object(Request))
     (/home/flyerprinting/public_html/dev/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/flyerprinting/public_html/dev/vendor/symfony/error-handler/ErrorHandler.php:531)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException(object(ErrorException))                
[2/3] ErrorException
ErrorException:
Warning: ini_set(): Session ini settings cannot be changed after headers have already been sent

  at /home/flyerprinting/public_html/dev/vendor/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php:49
  at Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeFileSessionHandler->__construct('/home/flyerprinting/public_html/dev/var/cache/dev/../var/sessions/dev')
     (/home/flyerprinting/public_html/dev/var/cache/dev/ContainerYg1SG59/getSession_FactoryService.php:37)
  at ContainerYg1SG59\getSession_FactoryService::do(object(App_KernelDevDebugContainer), true)
     (/home/flyerprinting/public_html/dev/var/cache/dev/ContainerYg1SG59/App_KernelDevDebugContainer.php:379)
  at ContainerYg1SG59\App_KernelDevDebugContainer->load('getSession_FactoryService')
     (/home/flyerprinting/public_html/dev/vendor/symfony/dependency-injection/Container.php:403)
  at Symfony\Component\DependencyInjection\Container->getService('privates', 'session.factory', 'getSession_FactoryService', true)
     (/home/flyerprinting/public_html/dev/vendor/symfony/dependency-injection/Argument/ServiceLocator.php:40)
  at Symfony\Component\DependencyInjection\Argument\ServiceLocator->get('session_factory')
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/EventListener/SessionListener.php:28)
  at Symfony\Component\HttpKernel\EventListener\SessionListener->getSession()
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php:73)
  at Symfony\Component\HttpKernel\EventListener\AbstractSessionListener->{closure:Symfony\Component\HttpKernel\EventListener\AbstractSessionListener::onKernelRequest():68}()
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-foundation/Request.php:725)
  at Symfony\Component\HttpFoundation\Request->getSession()
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-foundation/Request.php:742)
  at Symfony\Component\HttpFoundation\Request->hasPreviousSession()
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:100)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelResponse(object(ResponseEvent), 'kernel.response', object(TraceableEventDispatcher))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ResponseEvent), 'kernel.response', object(TraceableEventDispatcher))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.response', object(ResponseEvent))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ResponseEvent), 'kernel.response')
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ResponseEvent), 'kernel.response')
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/HttpKernel.php:214)
  at Symfony\Component\HttpKernel\HttpKernel->filterResponse(object(RedirectResponse), object(Request), 2)
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/HttpKernel.php:160)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 2)
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 2, false)
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/EventListener/ErrorListener.php:117)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->onKernelException(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.exception', object(ExceptionEvent))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/HttpKernel.php:239)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable(object(ErrorException), object(Request), 1)
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/HttpKernel.php:91)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (/home/flyerprinting/public_html/dev/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (/home/flyerprinting/public_html/dev/vendor/autoload_runtime.php:29)
  at require_once('/home/flyerprinting/public_html/dev/vendor/autoload_runtime.php')
     (/home/flyerprinting/public_html/dev/public/index.php:5)                
[1/3] ErrorException
ErrorException:
Warning: ini_set(): Session ini settings cannot be changed after headers have already been sent

  at /home/flyerprinting/public_html/dev/vendor/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php:49
  at Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeFileSessionHandler->__construct('/home/flyerprinting/public_html/dev/var/cache/dev/../var/sessions/dev')
     (/home/flyerprinting/public_html/dev/var/cache/dev/ContainerYg1SG59/getSession_FactoryService.php:37)
  at ContainerYg1SG59\getSession_FactoryService::do(object(App_KernelDevDebugContainer), true)
     (/home/flyerprinting/public_html/dev/var/cache/dev/ContainerYg1SG59/App_KernelDevDebugContainer.php:390)
  at ContainerYg1SG59\App_KernelDevDebugContainer->load('getSession_FactoryService.php')
     (/home/flyerprinting/public_html/dev/vendor/symfony/dependency-injection/Container.php:403)
  at Symfony\Component\DependencyInjection\Container->getService('privates', 'session.factory', 'getSession_FactoryService', true)
     (/home/flyerprinting/public_html/dev/vendor/symfony/dependency-injection/Argument/ServiceLocator.php:40)
  at Symfony\Component\DependencyInjection\Argument\ServiceLocator->get('session_factory')
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/EventListener/SessionListener.php:28)
  at Symfony\Component\HttpKernel\EventListener\SessionListener->getSession()
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php:73)
  at Symfony\Component\HttpKernel\EventListener\AbstractSessionListener->{closure:Symfony\Component\HttpKernel\EventListener\AbstractSessionListener::onKernelRequest():68}()
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-foundation/Request.php:725)
  at Symfony\Component\HttpFoundation\Request->getSession()
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-foundation/Request.php:742)
  at Symfony\Component\HttpFoundation\Request->hasPreviousSession()
     (/home/flyerprinting/public_html/dev/vendor/symfony/security-http/Firewall/ContextListener.php:90)
  at Symfony\Component\Security\Http\Firewall\ContextListener->authenticate(object(RequestEvent))
     (/home/flyerprinting/public_html/dev/vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:46)
  at Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener->authenticate(object(RequestEvent))
     (/home/flyerprinting/public_html/dev/vendor/symfony/security-http/Firewall/AbstractListener.php:26)
  at Symfony\Component\Security\Http\Firewall\AbstractListener->__invoke(object(RequestEvent))
     (/home/flyerprinting/public_html/dev/vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:76)
  at Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners(object(RequestEvent), object(Generator))
     (/home/flyerprinting/public_html/dev/vendor/symfony/security-http/Firewall.php:95)
  at Symfony\Component\Security\Http\Firewall->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (/home/flyerprinting/public_html/dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/HttpKernel.php:157)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (/home/flyerprinting/public_html/dev/vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (/home/flyerprinting/public_html/dev/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (/home/flyerprinting/public_html/dev/vendor/autoload_runtime.php:29)
  at require_once('/home/flyerprinting/public_html/dev/vendor/autoload_runtime.php')
     (/home/flyerprinting/public_html/dev/public/index.php:5)