https://digitallvision.com/resetting/send-email

Exceptions

An exception occurred in driver: SQLSTATE[HY000] [2002] Connection refused

Exceptions 3

Doctrine\DBAL\Exception\ ConnectionException

  1.             case '1227':
  2.             case '1370':
  3.             case '1429':
  4.             case '2002':
  5.             case '2005':
  6.                 return new Exception\ConnectionException($message$exception);
  7.             case '1048':
  8.             case '1121':
  9.             case '1138':
  10.             case '1171':
  1.     {
  2.         if ($driverEx instanceof DriverException) {
  3.             return $driverEx;
  4.         }
  5.         if ($driver instanceof ExceptionConverterDriver && $driverEx instanceof DriverExceptionInterface) {
  6.             return $driver->convertException($msg$driverEx);
  7.         }
  8.         return new self($msg0$driverEx);
  9.     }
  1.      *
  2.      * @return \Doctrine\DBAL\DBALException
  3.      */
  4.     public static function driverException(Driver $driverThrowable $driverEx)
  5.     {
  6.         return static::wrapException($driver$driverEx'An exception occurred in driver: ' $driverEx->getMessage());
  7.     }
  8.     /**
  9.      * @param Exception $driverEx
  10.      *
  1.                 $username,
  2.                 $password,
  3.                 $driverOptions
  4.             );
  5.         } catch (PDOException $e) {
  6.             throw DBALException::driverException($this$e);
  7.         }
  8.         return $conn;
  9.     }
  1.         $driverOptions $this->params['driverOptions'] ?? [];
  2.         $user          $this->params['user'] ?? null;
  3.         $password      $this->params['password'] ?? null;
  4.         $this->_conn       $this->_driver->connect($this->params$user$password$driverOptions);
  5.         $this->isConnected true;
  6.         if ($this->autoCommit === false) {
  7.             $this->beginTransaction();
  8.         }
  1.     {
  2.         if ($qcp !== null) {
  3.             return $this->executeCacheQuery($query$params$types$qcp);
  4.         }
  5.         $this->connect();
  6.         $logger $this->_config->getSQLLogger();
  7.         if ($logger) {
  8.             $logger->startQuery($query$params$types);
  9.         }
  1.     {
  2.         $this->switchPersisterContext(null$limit);
  3.         $sql $this->getSelectSQL($criteria$assoc$lockMode$limitnull$orderBy);
  4.         list($params$types) = $this->expandParameters($criteria);
  5.         $stmt $this->conn->executeQuery($sql$params$types);
  6.         if ($entity !== null) {
  7.             $hints[Query::HINT_REFRESH]         = true;
  8.             $hints[Query::HINT_REFRESH_ENTITY]  = $entity;
  9.         }
  1.      */
  2.     public function findOneBy(array $criteria, array $orderBy null)
  3.     {
  4.         $persister $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
  5.         return $persister->load($criterianullnull, [], null1$orderBy);
  6.     }
  7.     /**
  8.      * Counts entities by a set of criteria.
  9.      *
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function findUserBy(array $criteria)
  5.     {
  6.         return $this->getRepository()->findOneBy($criteria);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function findUserByEmail($email)
  5.     {
  6.         return $this->findUserBy(array('emailCanonical' => $this->canonicalFieldsUpdater->canonicalizeEmail($email)));
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      * {@inheritdoc}
  2.      */
  3.     public function findUserByUsernameOrEmail($usernameOrEmail)
  4.     {
  5.         if (preg_match('/^.+\@\S+\.\S+$/'$usernameOrEmail)) {
  6.             $user $this->findUserByEmail($usernameOrEmail);
  7.             if (null !== $user) {
  8.                 return $user;
  9.             }
  10.         }
  1.      */
  2.     public function sendEmailAction(Request $request)
  3.     {
  4.         $username $request->request->get('username');
  5.         $user $this->userManager->findUserByUsernameOrEmail($username);
  6. // AƱadida linea para comprobar reenvio de resseting duplicado
  7.            if ($user->getPasswordRequestedAt()!=null || $user->getPasswordRequestedAt()!=''){
  8.                $em$this->getDoctrine()->getManager();
  9.                $user->setPasswordRequestedAt(null);
  10.               $em->flush();
in vendor/symfony/http-kernel/HttpKernel.php->sendEmailAction (line 151)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level'ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  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.     }
Kernel->handle() in public/index.php (line 25)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Doctrine\DBAL\Driver\ PDOException

SQLSTATE[HY000] [2002] Connection refused

  1.         try {
  2.             parent::__construct($dsn$user$password$options);
  3.             $this->setAttribute(PDO::ATTR_STATEMENT_CLASS, [PDOStatement::class, []]);
  4.             $this->setAttribute(PDO::ATTR_ERRMODEPDO::ERRMODE_EXCEPTION);
  5.         } catch (\PDOException $exception) {
  6.             throw new PDOException($exception);
  7.         }
  8.     }
  9.     /**
  10.      * {@inheritdoc}
  1.      */
  2.     public function connect(array $params$username null$password null, array $driverOptions = [])
  3.     {
  4.         try {
  5.             $conn = new PDOConnection(
  6.                 $this->constructPdoDsn($params),
  7.                 $username,
  8.                 $password,
  9.                 $driverOptions
  10.             );
  11.         } catch (PDOException $e) {
  1.         $driverOptions $this->params['driverOptions'] ?? [];
  2.         $user          $this->params['user'] ?? null;
  3.         $password      $this->params['password'] ?? null;
  4.         $this->_conn       $this->_driver->connect($this->params$user$password$driverOptions);
  5.         $this->isConnected true;
  6.         if ($this->autoCommit === false) {
  7.             $this->beginTransaction();
  8.         }
  1.     {
  2.         if ($qcp !== null) {
  3.             return $this->executeCacheQuery($query$params$types$qcp);
  4.         }
  5.         $this->connect();
  6.         $logger $this->_config->getSQLLogger();
  7.         if ($logger) {
  8.             $logger->startQuery($query$params$types);
  9.         }
  1.     {
  2.         $this->switchPersisterContext(null$limit);
  3.         $sql $this->getSelectSQL($criteria$assoc$lockMode$limitnull$orderBy);
  4.         list($params$types) = $this->expandParameters($criteria);
  5.         $stmt $this->conn->executeQuery($sql$params$types);
  6.         if ($entity !== null) {
  7.             $hints[Query::HINT_REFRESH]         = true;
  8.             $hints[Query::HINT_REFRESH_ENTITY]  = $entity;
  9.         }
  1.      */
  2.     public function findOneBy(array $criteria, array $orderBy null)
  3.     {
  4.         $persister $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
  5.         return $persister->load($criterianullnull, [], null1$orderBy);
  6.     }
  7.     /**
  8.      * Counts entities by a set of criteria.
  9.      *
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function findUserBy(array $criteria)
  5.     {
  6.         return $this->getRepository()->findOneBy($criteria);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function findUserByEmail($email)
  5.     {
  6.         return $this->findUserBy(array('emailCanonical' => $this->canonicalFieldsUpdater->canonicalizeEmail($email)));
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      * {@inheritdoc}
  2.      */
  3.     public function findUserByUsernameOrEmail($usernameOrEmail)
  4.     {
  5.         if (preg_match('/^.+\@\S+\.\S+$/'$usernameOrEmail)) {
  6.             $user $this->findUserByEmail($usernameOrEmail);
  7.             if (null !== $user) {
  8.                 return $user;
  9.             }
  10.         }
  1.      */
  2.     public function sendEmailAction(Request $request)
  3.     {
  4.         $username $request->request->get('username');
  5.         $user $this->userManager->findUserByUsernameOrEmail($username);
  6. // AƱadida linea para comprobar reenvio de resseting duplicado
  7.            if ($user->getPasswordRequestedAt()!=null || $user->getPasswordRequestedAt()!=''){
  8.                $em$this->getDoctrine()->getManager();
  9.                $user->setPasswordRequestedAt(null);
  10.               $em->flush();
in vendor/symfony/http-kernel/HttpKernel.php->sendEmailAction (line 151)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level'ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  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.     }
Kernel->handle() in public/index.php (line 25)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

PDOException

SQLSTATE[HY000] [2002] Connection refused

  1.      * @throws PDOException In case of an error.
  2.      */
  3.     public function __construct($dsn$user null$password null, ?array $options null)
  4.     {
  5.         try {
  6.             parent::__construct($dsn$user$password$options);
  7.             $this->setAttribute(PDO::ATTR_STATEMENT_CLASS, [PDOStatement::class, []]);
  8.             $this->setAttribute(PDO::ATTR_ERRMODEPDO::ERRMODE_EXCEPTION);
  9.         } catch (\PDOException $exception) {
  10.             throw new PDOException($exception);
  11.         }
  1.      * @throws PDOException In case of an error.
  2.      */
  3.     public function __construct($dsn$user null$password null, ?array $options null)
  4.     {
  5.         try {
  6.             parent::__construct($dsn$user$password$options);
  7.             $this->setAttribute(PDO::ATTR_STATEMENT_CLASS, [PDOStatement::class, []]);
  8.             $this->setAttribute(PDO::ATTR_ERRMODEPDO::ERRMODE_EXCEPTION);
  9.         } catch (\PDOException $exception) {
  10.             throw new PDOException($exception);
  11.         }
  1.      */
  2.     public function connect(array $params$username null$password null, array $driverOptions = [])
  3.     {
  4.         try {
  5.             $conn = new PDOConnection(
  6.                 $this->constructPdoDsn($params),
  7.                 $username,
  8.                 $password,
  9.                 $driverOptions
  10.             );
  11.         } catch (PDOException $e) {
  1.         $driverOptions $this->params['driverOptions'] ?? [];
  2.         $user          $this->params['user'] ?? null;
  3.         $password      $this->params['password'] ?? null;
  4.         $this->_conn       $this->_driver->connect($this->params$user$password$driverOptions);
  5.         $this->isConnected true;
  6.         if ($this->autoCommit === false) {
  7.             $this->beginTransaction();
  8.         }
  1.     {
  2.         if ($qcp !== null) {
  3.             return $this->executeCacheQuery($query$params$types$qcp);
  4.         }
  5.         $this->connect();
  6.         $logger $this->_config->getSQLLogger();
  7.         if ($logger) {
  8.             $logger->startQuery($query$params$types);
  9.         }
  1.     {
  2.         $this->switchPersisterContext(null$limit);
  3.         $sql $this->getSelectSQL($criteria$assoc$lockMode$limitnull$orderBy);
  4.         list($params$types) = $this->expandParameters($criteria);
  5.         $stmt $this->conn->executeQuery($sql$params$types);
  6.         if ($entity !== null) {
  7.             $hints[Query::HINT_REFRESH]         = true;
  8.             $hints[Query::HINT_REFRESH_ENTITY]  = $entity;
  9.         }
  1.      */
  2.     public function findOneBy(array $criteria, array $orderBy null)
  3.     {
  4.         $persister $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
  5.         return $persister->load($criterianullnull, [], null1$orderBy);
  6.     }
  7.     /**
  8.      * Counts entities by a set of criteria.
  9.      *
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function findUserBy(array $criteria)
  5.     {
  6.         return $this->getRepository()->findOneBy($criteria);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function findUserByEmail($email)
  5.     {
  6.         return $this->findUserBy(array('emailCanonical' => $this->canonicalFieldsUpdater->canonicalizeEmail($email)));
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      * {@inheritdoc}
  2.      */
  3.     public function findUserByUsernameOrEmail($usernameOrEmail)
  4.     {
  5.         if (preg_match('/^.+\@\S+\.\S+$/'$usernameOrEmail)) {
  6.             $user $this->findUserByEmail($usernameOrEmail);
  7.             if (null !== $user) {
  8.                 return $user;
  9.             }
  10.         }
  1.      */
  2.     public function sendEmailAction(Request $request)
  3.     {
  4.         $username $request->request->get('username');
  5.         $user $this->userManager->findUserByUsernameOrEmail($username);
  6. // AƱadida linea para comprobar reenvio de resseting duplicado
  7.            if ($user->getPasswordRequestedAt()!=null || $user->getPasswordRequestedAt()!=''){
  8.                $em$this->getDoctrine()->getManager();
  9.                $user->setPasswordRequestedAt(null);
  10.               $em->flush();
in vendor/symfony/http-kernel/HttpKernel.php->sendEmailAction (line 151)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level'ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  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.     }
Kernel->handle() in public/index.php (line 25)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Traces 3

[3/3] ConnectionException

Doctrine\DBAL\Exception\ConnectionException:
An exception occurred in driver: SQLSTATE[HY000] [2002] Connection refused

  at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:93
  at Doctrine\DBAL\Driver\AbstractMySQLDriver->convertException()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:169)
  at Doctrine\DBAL\DBALException::wrapException()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:155)
  at Doctrine\DBAL\DBALException::driverException()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOMySql/Driver.php:28)
  at Doctrine\DBAL\Driver\PDOMySql\Driver->connect()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:356)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:889)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:733)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load()
     (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:196)
  at Doctrine\ORM\EntityRepository->findOneBy()
     (vendor/friendsofsymfony/user-bundle/Doctrine/UserManager.php:76)
  at FOS\UserBundle\Doctrine\UserManager->findUserBy()
     (vendor/friendsofsymfony/user-bundle/Model/UserManager.php:50)
  at FOS\UserBundle\Model\UserManager->findUserByEmail()
     (vendor/friendsofsymfony/user-bundle/Model/UserManager.php:67)
  at FOS\UserBundle\Model\UserManager->findUserByUsernameOrEmail()
     (vendor/friendsofsymfony/user-bundle/Controller/ResettingController.php:85)
  at FOS\UserBundle\Controller\ResettingController->sendEmailAction()
     (vendor/symfony/http-kernel/HttpKernel.php:151)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:68)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:198)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:25)

[2/3] PDOException

Doctrine\DBAL\Driver\PDOException:
SQLSTATE[HY000] [2002] Connection refused

  at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:31
  at Doctrine\DBAL\Driver\PDOConnection->__construct()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOMySql/Driver.php:22)
  at Doctrine\DBAL\Driver\PDOMySql\Driver->connect()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:356)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:889)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:733)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load()
     (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:196)
  at Doctrine\ORM\EntityRepository->findOneBy()
     (vendor/friendsofsymfony/user-bundle/Doctrine/UserManager.php:76)
  at FOS\UserBundle\Doctrine\UserManager->findUserBy()
     (vendor/friendsofsymfony/user-bundle/Model/UserManager.php:50)
  at FOS\UserBundle\Model\UserManager->findUserByEmail()
     (vendor/friendsofsymfony/user-bundle/Model/UserManager.php:67)
  at FOS\UserBundle\Model\UserManager->findUserByUsernameOrEmail()
     (vendor/friendsofsymfony/user-bundle/Controller/ResettingController.php:85)
  at FOS\UserBundle\Controller\ResettingController->sendEmailAction()
     (vendor/symfony/http-kernel/HttpKernel.php:151)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:68)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:198)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:25)

[1/3] PDOException

PDOException:
SQLSTATE[HY000] [2002] Connection refused

  at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:27
  at PDO->__construct()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:27)
  at Doctrine\DBAL\Driver\PDOConnection->__construct()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOMySql/Driver.php:22)
  at Doctrine\DBAL\Driver\PDOMySql\Driver->connect()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:356)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:889)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:733)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->load()
     (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:196)
  at Doctrine\ORM\EntityRepository->findOneBy()
     (vendor/friendsofsymfony/user-bundle/Doctrine/UserManager.php:76)
  at FOS\UserBundle\Doctrine\UserManager->findUserBy()
     (vendor/friendsofsymfony/user-bundle/Model/UserManager.php:50)
  at FOS\UserBundle\Model\UserManager->findUserByEmail()
     (vendor/friendsofsymfony/user-bundle/Model/UserManager.php:67)
  at FOS\UserBundle\Model\UserManager->findUserByUsernameOrEmail()
     (vendor/friendsofsymfony/user-bundle/Controller/ResettingController.php:85)
  at FOS\UserBundle\Controller\ResettingController->sendEmailAction()
     (vendor/symfony/http-kernel/HttpKernel.php:151)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:68)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:198)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:25)