https://qcentre.extrakdo.com/

Exceptions

An exception occurred in driver: SQLSTATE[HY000] [2002] No such file or directory

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($offset$limit);
  3.         $sql $this->getSelectSQL($criterianullnull$limit$offset$orderBy);
  4.         list($params$types) = $this->expandParameters($criteria);
  5.         $stmt $this->conn->executeQuery($sql$params$types);
  6.         $hydrator $this->em->newHydrator(($this->currentPersisterContext->selectJoinSql) ? Query::HYDRATE_OBJECT Query::HYDRATE_SIMPLEOBJECT);
  7.         return $hydrator->hydrateAll($stmt$this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]
  8.         );
  1.      */
  2.     public function findBy(array $criteria, array $orderBy null$limit null$offset null)
  3.     {
  4.         $persister $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
  5.         return $persister->loadAll($criteria$orderBy$limit$offset);
  6.     }
  7.     /**
  8.      * Finds a single entity by a set of criteria.
  9.      *
  1.      *
  2.      * @return array The entities.
  3.      */
  4.     public function findAll()
  5.     {
  6.         return $this->findBy([]);
  7.     }
  8.     /**
  9.      * Finds entities by a set of criteria.
  10.      *
EntityRepository->findAll() in src/Controller/PageController.php (line 39)
  1.         GameTicketTypeRepository $game_ticket_type_repo,
  2.         ConfigWebsiteRepository $cw_repo
  3.     ) {
  4.         $array_game_global = array();
  5.         $game_types $game_type_repo->findAll();
  6.         $config_website $cw_repo->findAll()[0];
  7.         $nbr_game_with_ticket $game_repo->countGameWithTicket();
  8.         $gtt_daily $game_ticket_type_repo->findOneBy(['reference' => 'daily']);
  9.         $gtt_loyalty $game_ticket_type_repo->findOneBy(['reference' => 'loyalty']);
  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(object(Request)) in public/index.php (line 27)
  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] No such file or directory

  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.         try {
  2.             $conn = new PDOConnection(
  3.                 $this->constructPdoDsn($params),
  4.                 $username,
  5.                 $password,
  6.                 $driverOptions
  7.             );
  8.         } catch (PDOException $e) {
  9.             throw DBALException::driverException($this$e);
  10.         }
  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($offset$limit);
  3.         $sql $this->getSelectSQL($criterianullnull$limit$offset$orderBy);
  4.         list($params$types) = $this->expandParameters($criteria);
  5.         $stmt $this->conn->executeQuery($sql$params$types);
  6.         $hydrator $this->em->newHydrator(($this->currentPersisterContext->selectJoinSql) ? Query::HYDRATE_OBJECT Query::HYDRATE_SIMPLEOBJECT);
  7.         return $hydrator->hydrateAll($stmt$this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]
  8.         );
  1.      */
  2.     public function findBy(array $criteria, array $orderBy null$limit null$offset null)
  3.     {
  4.         $persister $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
  5.         return $persister->loadAll($criteria$orderBy$limit$offset);
  6.     }
  7.     /**
  8.      * Finds a single entity by a set of criteria.
  9.      *
  1.      *
  2.      * @return array The entities.
  3.      */
  4.     public function findAll()
  5.     {
  6.         return $this->findBy([]);
  7.     }
  8.     /**
  9.      * Finds entities by a set of criteria.
  10.      *
EntityRepository->findAll() in src/Controller/PageController.php (line 39)
  1.         GameTicketTypeRepository $game_ticket_type_repo,
  2.         ConfigWebsiteRepository $cw_repo
  3.     ) {
  4.         $array_game_global = array();
  5.         $game_types $game_type_repo->findAll();
  6.         $config_website $cw_repo->findAll()[0];
  7.         $nbr_game_with_ticket $game_repo->countGameWithTicket();
  8.         $gtt_daily $game_ticket_type_repo->findOneBy(['reference' => 'daily']);
  9.         $gtt_loyalty $game_ticket_type_repo->findOneBy(['reference' => 'loyalty']);
  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(object(Request)) in public/index.php (line 27)
  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] No such file or directory

  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.         try {
  2.             $conn = new PDOConnection(
  3.                 $this->constructPdoDsn($params),
  4.                 $username,
  5.                 $password,
  6.                 $driverOptions
  7.             );
  8.         } catch (PDOException $e) {
  9.             throw DBALException::driverException($this$e);
  10.         }
  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($offset$limit);
  3.         $sql $this->getSelectSQL($criterianullnull$limit$offset$orderBy);
  4.         list($params$types) = $this->expandParameters($criteria);
  5.         $stmt $this->conn->executeQuery($sql$params$types);
  6.         $hydrator $this->em->newHydrator(($this->currentPersisterContext->selectJoinSql) ? Query::HYDRATE_OBJECT Query::HYDRATE_SIMPLEOBJECT);
  7.         return $hydrator->hydrateAll($stmt$this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]
  8.         );
  1.      */
  2.     public function findBy(array $criteria, array $orderBy null$limit null$offset null)
  3.     {
  4.         $persister $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
  5.         return $persister->loadAll($criteria$orderBy$limit$offset);
  6.     }
  7.     /**
  8.      * Finds a single entity by a set of criteria.
  9.      *
  1.      *
  2.      * @return array The entities.
  3.      */
  4.     public function findAll()
  5.     {
  6.         return $this->findBy([]);
  7.     }
  8.     /**
  9.      * Finds entities by a set of criteria.
  10.      *
EntityRepository->findAll() in src/Controller/PageController.php (line 39)
  1.         GameTicketTypeRepository $game_ticket_type_repo,
  2.         ConfigWebsiteRepository $cw_repo
  3.     ) {
  4.         $array_game_global = array();
  5.         $game_types $game_type_repo->findAll();
  6.         $config_website $cw_repo->findAll()[0];
  7.         $nbr_game_with_ticket $game_repo->countGameWithTicket();
  8.         $gtt_daily $game_ticket_type_repo->findOneBy(['reference' => 'daily']);
  9.         $gtt_loyalty $game_ticket_type_repo->findOneBy(['reference' => 'loyalty']);
  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(object(Request)) in public/index.php (line 27)
  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] No such file or directory

  at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:93
  at Doctrine\DBAL\Driver\AbstractMySQLDriver->convertException('An exception occurred in driver: SQLSTATE[HY000] [2002] No such file or directory', object(PDOException))
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:169)
  at Doctrine\DBAL\DBALException::wrapException(object(Driver), object(PDOException), 'An exception occurred in driver: SQLSTATE[HY000] [2002] No such file or directory')
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:155)
  at Doctrine\DBAL\DBALException::driverException(object(Driver), object(PDOException))
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOMySql/Driver.php:28)
  at Doctrine\DBAL\Driver\PDOMySql\Driver->connect(array('url' => '', 'driver' => 'pdo_mysql', 'charset' => 'utf8mb4', 'host' => 'localhost', 'port' => null, 'user' => 'root', 'password' => null, 'driverOptions' => array(), 'serverVersion' => '5.7', 'defaultTableOptions' => array('charset' => 'utf8mb4', 'collate' => 'utf8mb4_unicode_ci'), 'dbname' => ''), 'root', null, array())
     (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('SELECT t0.id AS id_1, t0.name AS name_2, t0.description AS description_3, t0.reference AS reference_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6 FROM game_type t0', array(), array())
     (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:904)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll(array(), null, null, null)
     (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:181)
  at Doctrine\ORM\EntityRepository->findBy(array())
     (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:164)
  at Doctrine\ORM\EntityRepository->findAll()
     (src/Controller/PageController.php:39)
  at App\Controller\PageController->homepage(object(GameTypeRepository), object(GameRepository), object(GameTicketRepository), object(GameTicketTypeRepository), object(ConfigWebsiteRepository))
     (vendor/symfony/http-kernel/HttpKernel.php:151)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:68)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:247)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:27)

[2/3] PDOException

Doctrine\DBAL\Driver\PDOException:
SQLSTATE[HY000] [2002] No such file or directory

  at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:31
  at Doctrine\DBAL\Driver\PDOConnection->__construct('mysql:host=localhost;dbname=;charset=utf8mb4;', 'root', null, array())
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOMySql/Driver.php:25)
  at Doctrine\DBAL\Driver\PDOMySql\Driver->connect(array('url' => '', 'driver' => 'pdo_mysql', 'charset' => 'utf8mb4', 'host' => 'localhost', 'port' => null, 'user' => 'root', 'password' => null, 'driverOptions' => array(), 'serverVersion' => '5.7', 'defaultTableOptions' => array('charset' => 'utf8mb4', 'collate' => 'utf8mb4_unicode_ci'), 'dbname' => ''), 'root', null, array())
     (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('SELECT t0.id AS id_1, t0.name AS name_2, t0.description AS description_3, t0.reference AS reference_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6 FROM game_type t0', array(), array())
     (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:904)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll(array(), null, null, null)
     (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:181)
  at Doctrine\ORM\EntityRepository->findBy(array())
     (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:164)
  at Doctrine\ORM\EntityRepository->findAll()
     (src/Controller/PageController.php:39)
  at App\Controller\PageController->homepage(object(GameTypeRepository), object(GameRepository), object(GameTicketRepository), object(GameTicketTypeRepository), object(ConfigWebsiteRepository))
     (vendor/symfony/http-kernel/HttpKernel.php:151)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:68)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:247)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:27)

[1/3] PDOException

PDOException:
SQLSTATE[HY000] [2002] No such file or directory

  at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:27
  at PDO->__construct('mysql:host=localhost;dbname=;charset=utf8mb4;', 'root', null, array())
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOConnection.php:27)
  at Doctrine\DBAL\Driver\PDOConnection->__construct('mysql:host=localhost;dbname=;charset=utf8mb4;', 'root', null, array())
     (vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOMySql/Driver.php:25)
  at Doctrine\DBAL\Driver\PDOMySql\Driver->connect(array('url' => '', 'driver' => 'pdo_mysql', 'charset' => 'utf8mb4', 'host' => 'localhost', 'port' => null, 'user' => 'root', 'password' => null, 'driverOptions' => array(), 'serverVersion' => '5.7', 'defaultTableOptions' => array('charset' => 'utf8mb4', 'collate' => 'utf8mb4_unicode_ci'), 'dbname' => ''), 'root', null, array())
     (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('SELECT t0.id AS id_1, t0.name AS name_2, t0.description AS description_3, t0.reference AS reference_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6 FROM game_type t0', array(), array())
     (vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php:904)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll(array(), null, null, null)
     (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:181)
  at Doctrine\ORM\EntityRepository->findBy(array())
     (vendor/doctrine/orm/lib/Doctrine/ORM/EntityRepository.php:164)
  at Doctrine\ORM\EntityRepository->findAll()
     (src/Controller/PageController.php:39)
  at App\Controller\PageController->homepage(object(GameTypeRepository), object(GameRepository), object(GameTicketRepository), object(GameTicketTypeRepository), object(ConfigWebsiteRepository))
     (vendor/symfony/http-kernel/HttpKernel.php:151)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:68)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:247)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:27)