http://scicawally.com/front/end/contact

Exceptions

An exception occurred in the driver: SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for scicawwwebmaster.mysql.db failed: Name or service not known

Exceptions 4

Doctrine\DBAL\Exception\ ConnectionException

  1.             case 1370:
  2.             case 1429:
  3.             case 2002:
  4.             case 2005:
  5.             case 2054:
  6.                 return new ConnectionException($exception$query);
  7.             case 2006:
  8.                 return new ConnectionLost($exception$query);
  9.             case 1048:
  1.     private function handleDriverException(
  2.         Driver\Exception $driverException,
  3.         ?Query $query
  4.     ): DriverException {
  5.         $this->exceptionConverter ??= $this->_driver->getExceptionConverter();
  6.         $exception                  $this->exceptionConverter->convert($driverException$query);
  7.         if ($exception instanceof ConnectionLost) {
  8.             $this->close();
  9.         }
in vendor/doctrine/dbal/src/Connection.php -> handleDriverException (line 1857)
  1.     }
  2.     /** @internal */
  3.     final public function convertException(Driver\Exception $e): DriverException
  4.     {
  5.         return $this->handleDriverException($enull);
  6.     }
  7.     /**
  8.      * @param array<int, mixed>|array<string, mixed>                               $params
  9.      * @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types
in vendor/doctrine/dbal/src/Connection.php -> convertException (line 348)
  1.         }
  2.         try {
  3.             $this->_conn $this->_driver->connect($this->params);
  4.         } catch (Driver\Exception $e) {
  5.             throw $this->convertException($e);
  6.         }
  7.         if ($this->autoCommit === false) {
  8.             $this->beginTransaction();
  9.         }
  1.             'https://github.com/doctrine/dbal/issues/4966',
  2.             'Connection::getWrappedConnection() is deprecated.'
  3.                 ' Use Connection::getNativeConnection() to access the native connection.',
  4.         );
  5.         $this->connect();
  6.         assert($this->_conn !== null);
  7.         return $this->_conn;
  8.     }
in vendor/doctrine/dbal/src/Connection.php -> getWrappedConnection (line 1046)
  1.     ): Result {
  2.         if ($qcp !== null) {
  3.             return $this->executeCacheQuery($sql$params$types$qcp);
  4.         }
  5.         $connection $this->getWrappedConnection();
  6.         $logger $this->_config->getSQLLogger();
  7.         if ($logger !== null) {
  8.             $logger->startQuery($sql$params$types);
  9.         }
  1.      *
  2.      * @return Result
  3.      */
  4.     public function execute(Connection $conn, array $params, array $types)
  5.     {
  6.         return $conn->executeQuery($this->_sqlStatements$params$types$this->queryCacheProfile);
  7.     }
  8. }
  1.             $sqlParams,
  2.             $types,
  3.             $this->_em->getConnection()->getParams()
  4.         );
  5.         return $executor->execute($this->_em->getConnection(), $sqlParams$types);
  6.     }
  7.     /**
  8.      * @param array<string,mixed> $sqlParams
  9.      * @param array<string,Type>  $types
  1.             $setCacheEntry = static function ($data) use ($cache$result$cacheItem$realCacheKey): void {
  2.                 $cache->save($cacheItem->set($result + [$realCacheKey => $data]));
  3.             };
  4.         }
  5.         $stmt $this->_doExecute();
  6.         if (is_numeric($stmt)) {
  7.             $setCacheEntry($stmt);
  8.             return $stmt;
in vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php -> executeIgnoreQueryCache (line 1165)
  1.     {
  2.         if ($this->cacheable && $this->isCacheEnabled()) {
  3.             return $this->executeUsingQueryCache($parameters$hydrationMode);
  4.         }
  5.         return $this->executeIgnoreQueryCache($parameters$hydrationMode);
  6.     }
  7.     /**
  8.      * Execute query ignoring second level cache.
  9.      *
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function getEntities(): array
  5.     {
  6.         return $this->queryBuilder->getQuery()->execute();
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      * {@inheritdoc}
  2.      */
  3.     protected function loadChoices(): iterable
  4.     {
  5.         return $this->objectLoader
  6.             $this->objectLoader->getEntities()
  7.             : $this->manager->getRepository($this->class)->findAll();
  8.     }
  9.     /**
  10.      * @internal to be remove in Symfony 6
  1.      *
  2.      * {@inheritdoc}
  3.      */
  4.     public function loadChoiceList(callable $value null): ChoiceListInterface
  5.     {
  6.         return new ArrayChoiceList($this->choices ??= $this->loadChoices(), $value);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function getChoices(): array
  5.     {
  6.         return $this->loader->loadChoiceList($this->value)->getChoices();
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     public function createView(ChoiceListInterface $list, array|callable $preferredChoices null, callable|false $label null, callable $index null, callable $groupBy null, array|callable $attr null, array|callable $labelTranslationParameters = []): ChoiceListView
  2.     {
  3.         $preferredViews = [];
  4.         $preferredViewsOrder = [];
  5.         $otherViews = [];
  6.         $choices $list->getChoices();
  7.         $keys $list->getOriginalKeys();
  8.         if (!\is_callable($preferredChoices)) {
  9.             if (empty($preferredChoices)) {
  10.                 $preferredChoices null;
  1.             $labelTranslationParameters = static function ($choice) use ($accessor$labelTranslationParameters) {
  2.                 return $accessor->getValue($choice$labelTranslationParameters);
  3.             };
  4.         }
  5.         return $this->decoratedFactory->createView(
  6.             $list,
  7.             $preferredChoices,
  8.             $label,
  9.             $index,
  10.             $groupBy,
  1.         } elseif ([] !== $labelTranslationParameters) {
  2.             $cache false;
  3.         }
  4.         if (!$cache) {
  5.             return $this->decoratedFactory->createView(
  6.                 $list,
  7.                 $preferredChoices,
  8.                 $label,
  9.                 $index,
  10.                 $groupBy,
  1.         );
  2.     }
  3.     private function createChoiceListView(ChoiceListInterface $choiceList, array $options)
  4.     {
  5.         return $this->choiceListFactory->createView(
  6.             $choiceList,
  7.             $options['preferred_choices'],
  8.             $options['choice_label'],
  9.             $options['choice_name'],
  10.             $options['group_by'],
in vendor/symfony/form/Extension/Core/Type/ChoiceType.php -> createChoiceListView (line 237)
  1.         $choiceList $form->getConfig()->getAttribute('choice_list');
  2.         /** @var ChoiceListView $choiceListView */
  3.         $choiceListView $form->getConfig()->hasAttribute('choice_list_view')
  4.             ? $form->getConfig()->getAttribute('choice_list_view')
  5.             : $this->createChoiceListView($choiceList$options);
  6.         $view->vars array_replace($view->vars, [
  7.             'multiple' => $options['multiple'],
  8.             'expanded' => $options['expanded'],
  9.             'preferred_choices' => $choiceListView->preferredChoices,
  1.     {
  2.         if (null !== $this->parent) {
  3.             $this->parent->buildView($view$form$options);
  4.         }
  5.         $this->innerType->buildView($view$form$options);
  6.         foreach ($this->typeExtensions as $extension) {
  7.             $extension->buildView($view$form$options);
  8.         }
  9.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function buildView(FormView $viewFormInterface $form, array $options)
  5.     {
  6.         $this->proxiedType->buildView($view$form$options);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      * {@inheritdoc}
  2.      */
  3.     public function buildView(FormView $viewFormInterface $form, array $options)
  4.     {
  5.         if (null !== $this->parent) {
  6.             $this->parent->buildView($view$form$options);
  7.         }
  8.         $this->innerType->buildView($view$form$options);
  9.         foreach ($this->typeExtensions as $extension) {
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function buildView(FormView $viewFormInterface $form, array $options)
  5.     {
  6.         $this->proxiedType->buildView($view$form$options);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
in vendor/symfony/form/Form.php -> buildView (line 997)
  1.         // The methods createView(), buildView() and finishView() are called
  2.         // explicitly here in order to be able to override either of them
  3.         // in a custom resolved form type.
  4.         $view $type->createView($this$parent);
  5.         $type->buildView($view$this$options);
  6.         foreach ($this->children as $name => $child) {
  7.             $view->children[$name] = $child->createView($view);
  8.         }
in vendor/symfony/form/Form.php -> createView (line 1000)
  1.         $view $type->createView($this$parent);
  2.         $type->buildView($view$this$options);
  3.         foreach ($this->children as $name => $child) {
  4.             $view->children[$name] = $child->createView($view);
  5.         }
  6.         $this->sort($view->children);
  7.         $type->finishView($view$this$options);
Form->createView() in src/Controller/FrontEnd/ContactController.php (line 51)
  1.             return $this->redirectToRoute('frontend_contact');
  2.         }
  3.         return $this->render('front_end/contact/index.html.twig', [
  4.             'controller_name' => 'ContactController',
  5.             'Formcontact'=>$formcontact->createView(),
  6.             'Form'=>$form->createView()
  7.         ]);
  8.     }
  9. }
  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.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  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.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/scicaww/sci-cawally/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Doctrine\DBAL\Driver\PDO\ Exception

SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for scicawwwebmaster.mysql.db failed: Name or service not known

  1.         } else {
  2.             $code     $exception->getCode();
  3.             $sqlState null;
  4.         }
  5.         return new self($exception->getMessage(), $sqlState$code$exception);
  6.     }
  7. }
  1.                 $params['user'] ?? '',
  2.                 $params['password'] ?? '',
  3.                 $driverOptions,
  4.             );
  5.         } catch (PDOException $exception) {
  6.             throw Exception::new($exception);
  7.         }
  8.         return new Connection($pdo);
  9.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function connect(array $params)
  5.     {
  6.         return $this->wrappedDriver->connect($params);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     public function connect(array $params)
  2.     {
  3.         $this->logger->info('Connecting with parameters {params}', ['params' => $this->maskPassword($params)]);
  4.         return new Connection(
  5.             parent::connect($params),
  6.             $this->logger,
  7.         );
  8.     }
  9.     /**
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function connect(array $params)
  5.     {
  6.         return $this->wrappedDriver->connect($params);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     }
  2.     public function connect(array $params): Connection
  3.     {
  4.         return new Connection(
  5.             parent::connect($params),
  6.             $this->debugDataHolder,
  7.             $this->stopwatch,
  8.             $this->connectionName
  9.         );
  10.     }
  1.         if ($this->_conn !== null) {
  2.             return false;
  3.         }
  4.         try {
  5.             $this->_conn $this->_driver->connect($this->params);
  6.         } catch (Driver\Exception $e) {
  7.             throw $this->convertException($e);
  8.         }
  9.         if ($this->autoCommit === false) {
  1.             'https://github.com/doctrine/dbal/issues/4966',
  2.             'Connection::getWrappedConnection() is deprecated.'
  3.                 ' Use Connection::getNativeConnection() to access the native connection.',
  4.         );
  5.         $this->connect();
  6.         assert($this->_conn !== null);
  7.         return $this->_conn;
  8.     }
in vendor/doctrine/dbal/src/Connection.php -> getWrappedConnection (line 1046)
  1.     ): Result {
  2.         if ($qcp !== null) {
  3.             return $this->executeCacheQuery($sql$params$types$qcp);
  4.         }
  5.         $connection $this->getWrappedConnection();
  6.         $logger $this->_config->getSQLLogger();
  7.         if ($logger !== null) {
  8.             $logger->startQuery($sql$params$types);
  9.         }
  1.      *
  2.      * @return Result
  3.      */
  4.     public function execute(Connection $conn, array $params, array $types)
  5.     {
  6.         return $conn->executeQuery($this->_sqlStatements$params$types$this->queryCacheProfile);
  7.     }
  8. }
  1.             $sqlParams,
  2.             $types,
  3.             $this->_em->getConnection()->getParams()
  4.         );
  5.         return $executor->execute($this->_em->getConnection(), $sqlParams$types);
  6.     }
  7.     /**
  8.      * @param array<string,mixed> $sqlParams
  9.      * @param array<string,Type>  $types
  1.             $setCacheEntry = static function ($data) use ($cache$result$cacheItem$realCacheKey): void {
  2.                 $cache->save($cacheItem->set($result + [$realCacheKey => $data]));
  3.             };
  4.         }
  5.         $stmt $this->_doExecute();
  6.         if (is_numeric($stmt)) {
  7.             $setCacheEntry($stmt);
  8.             return $stmt;
in vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php -> executeIgnoreQueryCache (line 1165)
  1.     {
  2.         if ($this->cacheable && $this->isCacheEnabled()) {
  3.             return $this->executeUsingQueryCache($parameters$hydrationMode);
  4.         }
  5.         return $this->executeIgnoreQueryCache($parameters$hydrationMode);
  6.     }
  7.     /**
  8.      * Execute query ignoring second level cache.
  9.      *
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function getEntities(): array
  5.     {
  6.         return $this->queryBuilder->getQuery()->execute();
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      * {@inheritdoc}
  2.      */
  3.     protected function loadChoices(): iterable
  4.     {
  5.         return $this->objectLoader
  6.             $this->objectLoader->getEntities()
  7.             : $this->manager->getRepository($this->class)->findAll();
  8.     }
  9.     /**
  10.      * @internal to be remove in Symfony 6
  1.      *
  2.      * {@inheritdoc}
  3.      */
  4.     public function loadChoiceList(callable $value null): ChoiceListInterface
  5.     {
  6.         return new ArrayChoiceList($this->choices ??= $this->loadChoices(), $value);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function getChoices(): array
  5.     {
  6.         return $this->loader->loadChoiceList($this->value)->getChoices();
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     public function createView(ChoiceListInterface $list, array|callable $preferredChoices null, callable|false $label null, callable $index null, callable $groupBy null, array|callable $attr null, array|callable $labelTranslationParameters = []): ChoiceListView
  2.     {
  3.         $preferredViews = [];
  4.         $preferredViewsOrder = [];
  5.         $otherViews = [];
  6.         $choices $list->getChoices();
  7.         $keys $list->getOriginalKeys();
  8.         if (!\is_callable($preferredChoices)) {
  9.             if (empty($preferredChoices)) {
  10.                 $preferredChoices null;
  1.             $labelTranslationParameters = static function ($choice) use ($accessor$labelTranslationParameters) {
  2.                 return $accessor->getValue($choice$labelTranslationParameters);
  3.             };
  4.         }
  5.         return $this->decoratedFactory->createView(
  6.             $list,
  7.             $preferredChoices,
  8.             $label,
  9.             $index,
  10.             $groupBy,
  1.         } elseif ([] !== $labelTranslationParameters) {
  2.             $cache false;
  3.         }
  4.         if (!$cache) {
  5.             return $this->decoratedFactory->createView(
  6.                 $list,
  7.                 $preferredChoices,
  8.                 $label,
  9.                 $index,
  10.                 $groupBy,
  1.         );
  2.     }
  3.     private function createChoiceListView(ChoiceListInterface $choiceList, array $options)
  4.     {
  5.         return $this->choiceListFactory->createView(
  6.             $choiceList,
  7.             $options['preferred_choices'],
  8.             $options['choice_label'],
  9.             $options['choice_name'],
  10.             $options['group_by'],
in vendor/symfony/form/Extension/Core/Type/ChoiceType.php -> createChoiceListView (line 237)
  1.         $choiceList $form->getConfig()->getAttribute('choice_list');
  2.         /** @var ChoiceListView $choiceListView */
  3.         $choiceListView $form->getConfig()->hasAttribute('choice_list_view')
  4.             ? $form->getConfig()->getAttribute('choice_list_view')
  5.             : $this->createChoiceListView($choiceList$options);
  6.         $view->vars array_replace($view->vars, [
  7.             'multiple' => $options['multiple'],
  8.             'expanded' => $options['expanded'],
  9.             'preferred_choices' => $choiceListView->preferredChoices,
  1.     {
  2.         if (null !== $this->parent) {
  3.             $this->parent->buildView($view$form$options);
  4.         }
  5.         $this->innerType->buildView($view$form$options);
  6.         foreach ($this->typeExtensions as $extension) {
  7.             $extension->buildView($view$form$options);
  8.         }
  9.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function buildView(FormView $viewFormInterface $form, array $options)
  5.     {
  6.         $this->proxiedType->buildView($view$form$options);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      * {@inheritdoc}
  2.      */
  3.     public function buildView(FormView $viewFormInterface $form, array $options)
  4.     {
  5.         if (null !== $this->parent) {
  6.             $this->parent->buildView($view$form$options);
  7.         }
  8.         $this->innerType->buildView($view$form$options);
  9.         foreach ($this->typeExtensions as $extension) {
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function buildView(FormView $viewFormInterface $form, array $options)
  5.     {
  6.         $this->proxiedType->buildView($view$form$options);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
in vendor/symfony/form/Form.php -> buildView (line 997)
  1.         // The methods createView(), buildView() and finishView() are called
  2.         // explicitly here in order to be able to override either of them
  3.         // in a custom resolved form type.
  4.         $view $type->createView($this$parent);
  5.         $type->buildView($view$this$options);
  6.         foreach ($this->children as $name => $child) {
  7.             $view->children[$name] = $child->createView($view);
  8.         }
in vendor/symfony/form/Form.php -> createView (line 1000)
  1.         $view $type->createView($this$parent);
  2.         $type->buildView($view$this$options);
  3.         foreach ($this->children as $name => $child) {
  4.             $view->children[$name] = $child->createView($view);
  5.         }
  6.         $this->sort($view->children);
  7.         $type->finishView($view$this$options);
Form->createView() in src/Controller/FrontEnd/ContactController.php (line 51)
  1.             return $this->redirectToRoute('frontend_contact');
  2.         }
  3.         return $this->render('front_end/contact/index.html.twig', [
  4.             'controller_name' => 'ContactController',
  5.             'Formcontact'=>$formcontact->createView(),
  6.             'Form'=>$form->createView()
  7.         ]);
  8.     }
  9. }
  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.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  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.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/scicaww/sci-cawally/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

PDOException

SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for scicawwwebmaster.mysql.db failed: Name or service not known

  1.         if (! empty($params['persistent'])) {
  2.             $driverOptions[PDO::ATTR_PERSISTENT] = true;
  3.         }
  4.         try {
  5.             $pdo = new PDO(
  6.                 $this->constructPdoDsn($params),
  7.                 $params['user'] ?? '',
  8.                 $params['password'] ?? '',
  9.                 $driverOptions,
  10.             );
  1.         if (! empty($params['persistent'])) {
  2.             $driverOptions[PDO::ATTR_PERSISTENT] = true;
  3.         }
  4.         try {
  5.             $pdo = new PDO(
  6.                 $this->constructPdoDsn($params),
  7.                 $params['user'] ?? '',
  8.                 $params['password'] ?? '',
  9.                 $driverOptions,
  10.             );
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function connect(array $params)
  5.     {
  6.         return $this->wrappedDriver->connect($params);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     public function connect(array $params)
  2.     {
  3.         $this->logger->info('Connecting with parameters {params}', ['params' => $this->maskPassword($params)]);
  4.         return new Connection(
  5.             parent::connect($params),
  6.             $this->logger,
  7.         );
  8.     }
  9.     /**
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function connect(array $params)
  5.     {
  6.         return $this->wrappedDriver->connect($params);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     }
  2.     public function connect(array $params): Connection
  3.     {
  4.         return new Connection(
  5.             parent::connect($params),
  6.             $this->debugDataHolder,
  7.             $this->stopwatch,
  8.             $this->connectionName
  9.         );
  10.     }
  1.         if ($this->_conn !== null) {
  2.             return false;
  3.         }
  4.         try {
  5.             $this->_conn $this->_driver->connect($this->params);
  6.         } catch (Driver\Exception $e) {
  7.             throw $this->convertException($e);
  8.         }
  9.         if ($this->autoCommit === false) {
  1.             'https://github.com/doctrine/dbal/issues/4966',
  2.             'Connection::getWrappedConnection() is deprecated.'
  3.                 ' Use Connection::getNativeConnection() to access the native connection.',
  4.         );
  5.         $this->connect();
  6.         assert($this->_conn !== null);
  7.         return $this->_conn;
  8.     }
in vendor/doctrine/dbal/src/Connection.php -> getWrappedConnection (line 1046)
  1.     ): Result {
  2.         if ($qcp !== null) {
  3.             return $this->executeCacheQuery($sql$params$types$qcp);
  4.         }
  5.         $connection $this->getWrappedConnection();
  6.         $logger $this->_config->getSQLLogger();
  7.         if ($logger !== null) {
  8.             $logger->startQuery($sql$params$types);
  9.         }
  1.      *
  2.      * @return Result
  3.      */
  4.     public function execute(Connection $conn, array $params, array $types)
  5.     {
  6.         return $conn->executeQuery($this->_sqlStatements$params$types$this->queryCacheProfile);
  7.     }
  8. }
  1.             $sqlParams,
  2.             $types,
  3.             $this->_em->getConnection()->getParams()
  4.         );
  5.         return $executor->execute($this->_em->getConnection(), $sqlParams$types);
  6.     }
  7.     /**
  8.      * @param array<string,mixed> $sqlParams
  9.      * @param array<string,Type>  $types
  1.             $setCacheEntry = static function ($data) use ($cache$result$cacheItem$realCacheKey): void {
  2.                 $cache->save($cacheItem->set($result + [$realCacheKey => $data]));
  3.             };
  4.         }
  5.         $stmt $this->_doExecute();
  6.         if (is_numeric($stmt)) {
  7.             $setCacheEntry($stmt);
  8.             return $stmt;
in vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php -> executeIgnoreQueryCache (line 1165)
  1.     {
  2.         if ($this->cacheable && $this->isCacheEnabled()) {
  3.             return $this->executeUsingQueryCache($parameters$hydrationMode);
  4.         }
  5.         return $this->executeIgnoreQueryCache($parameters$hydrationMode);
  6.     }
  7.     /**
  8.      * Execute query ignoring second level cache.
  9.      *
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function getEntities(): array
  5.     {
  6.         return $this->queryBuilder->getQuery()->execute();
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      * {@inheritdoc}
  2.      */
  3.     protected function loadChoices(): iterable
  4.     {
  5.         return $this->objectLoader
  6.             $this->objectLoader->getEntities()
  7.             : $this->manager->getRepository($this->class)->findAll();
  8.     }
  9.     /**
  10.      * @internal to be remove in Symfony 6
  1.      *
  2.      * {@inheritdoc}
  3.      */
  4.     public function loadChoiceList(callable $value null): ChoiceListInterface
  5.     {
  6.         return new ArrayChoiceList($this->choices ??= $this->loadChoices(), $value);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function getChoices(): array
  5.     {
  6.         return $this->loader->loadChoiceList($this->value)->getChoices();
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     public function createView(ChoiceListInterface $list, array|callable $preferredChoices null, callable|false $label null, callable $index null, callable $groupBy null, array|callable $attr null, array|callable $labelTranslationParameters = []): ChoiceListView
  2.     {
  3.         $preferredViews = [];
  4.         $preferredViewsOrder = [];
  5.         $otherViews = [];
  6.         $choices $list->getChoices();
  7.         $keys $list->getOriginalKeys();
  8.         if (!\is_callable($preferredChoices)) {
  9.             if (empty($preferredChoices)) {
  10.                 $preferredChoices null;
  1.             $labelTranslationParameters = static function ($choice) use ($accessor$labelTranslationParameters) {
  2.                 return $accessor->getValue($choice$labelTranslationParameters);
  3.             };
  4.         }
  5.         return $this->decoratedFactory->createView(
  6.             $list,
  7.             $preferredChoices,
  8.             $label,
  9.             $index,
  10.             $groupBy,
  1.         } elseif ([] !== $labelTranslationParameters) {
  2.             $cache false;
  3.         }
  4.         if (!$cache) {
  5.             return $this->decoratedFactory->createView(
  6.                 $list,
  7.                 $preferredChoices,
  8.                 $label,
  9.                 $index,
  10.                 $groupBy,
  1.         );
  2.     }
  3.     private function createChoiceListView(ChoiceListInterface $choiceList, array $options)
  4.     {
  5.         return $this->choiceListFactory->createView(
  6.             $choiceList,
  7.             $options['preferred_choices'],
  8.             $options['choice_label'],
  9.             $options['choice_name'],
  10.             $options['group_by'],
in vendor/symfony/form/Extension/Core/Type/ChoiceType.php -> createChoiceListView (line 237)
  1.         $choiceList $form->getConfig()->getAttribute('choice_list');
  2.         /** @var ChoiceListView $choiceListView */
  3.         $choiceListView $form->getConfig()->hasAttribute('choice_list_view')
  4.             ? $form->getConfig()->getAttribute('choice_list_view')
  5.             : $this->createChoiceListView($choiceList$options);
  6.         $view->vars array_replace($view->vars, [
  7.             'multiple' => $options['multiple'],
  8.             'expanded' => $options['expanded'],
  9.             'preferred_choices' => $choiceListView->preferredChoices,
  1.     {
  2.         if (null !== $this->parent) {
  3.             $this->parent->buildView($view$form$options);
  4.         }
  5.         $this->innerType->buildView($view$form$options);
  6.         foreach ($this->typeExtensions as $extension) {
  7.             $extension->buildView($view$form$options);
  8.         }
  9.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function buildView(FormView $viewFormInterface $form, array $options)
  5.     {
  6.         $this->proxiedType->buildView($view$form$options);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      * {@inheritdoc}
  2.      */
  3.     public function buildView(FormView $viewFormInterface $form, array $options)
  4.     {
  5.         if (null !== $this->parent) {
  6.             $this->parent->buildView($view$form$options);
  7.         }
  8.         $this->innerType->buildView($view$form$options);
  9.         foreach ($this->typeExtensions as $extension) {
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function buildView(FormView $viewFormInterface $form, array $options)
  5.     {
  6.         $this->proxiedType->buildView($view$form$options);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
in vendor/symfony/form/Form.php -> buildView (line 997)
  1.         // The methods createView(), buildView() and finishView() are called
  2.         // explicitly here in order to be able to override either of them
  3.         // in a custom resolved form type.
  4.         $view $type->createView($this$parent);
  5.         $type->buildView($view$this$options);
  6.         foreach ($this->children as $name => $child) {
  7.             $view->children[$name] = $child->createView($view);
  8.         }
in vendor/symfony/form/Form.php -> createView (line 1000)
  1.         $view $type->createView($this$parent);
  2.         $type->buildView($view$this$options);
  3.         foreach ($this->children as $name => $child) {
  4.             $view->children[$name] = $child->createView($view);
  5.         }
  6.         $this->sort($view->children);
  7.         $type->finishView($view$this$options);
Form->createView() in src/Controller/FrontEnd/ContactController.php (line 51)
  1.             return $this->redirectToRoute('frontend_contact');
  2.         }
  3.         return $this->render('front_end/contact/index.html.twig', [
  4.             'controller_name' => 'ContactController',
  5.             'Formcontact'=>$formcontact->createView(),
  6.             'Form'=>$form->createView()
  7.         ]);
  8.     }
  9. }
  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.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  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.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/scicaww/sci-cawally/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

PDOException

PDO::__construct(): php_network_getaddresses: getaddrinfo for scicawwwebmaster.mysql.db failed: Name or service not known

  1.         if (! empty($params['persistent'])) {
  2.             $driverOptions[PDO::ATTR_PERSISTENT] = true;
  3.         }
  4.         try {
  5.             $pdo = new PDO(
  6.                 $this->constructPdoDsn($params),
  7.                 $params['user'] ?? '',
  8.                 $params['password'] ?? '',
  9.                 $driverOptions,
  10.             );
  1.         if (! empty($params['persistent'])) {
  2.             $driverOptions[PDO::ATTR_PERSISTENT] = true;
  3.         }
  4.         try {
  5.             $pdo = new PDO(
  6.                 $this->constructPdoDsn($params),
  7.                 $params['user'] ?? '',
  8.                 $params['password'] ?? '',
  9.                 $driverOptions,
  10.             );
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function connect(array $params)
  5.     {
  6.         return $this->wrappedDriver->connect($params);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     public function connect(array $params)
  2.     {
  3.         $this->logger->info('Connecting with parameters {params}', ['params' => $this->maskPassword($params)]);
  4.         return new Connection(
  5.             parent::connect($params),
  6.             $this->logger,
  7.         );
  8.     }
  9.     /**
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function connect(array $params)
  5.     {
  6.         return $this->wrappedDriver->connect($params);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     }
  2.     public function connect(array $params): Connection
  3.     {
  4.         return new Connection(
  5.             parent::connect($params),
  6.             $this->debugDataHolder,
  7.             $this->stopwatch,
  8.             $this->connectionName
  9.         );
  10.     }
  1.         if ($this->_conn !== null) {
  2.             return false;
  3.         }
  4.         try {
  5.             $this->_conn $this->_driver->connect($this->params);
  6.         } catch (Driver\Exception $e) {
  7.             throw $this->convertException($e);
  8.         }
  9.         if ($this->autoCommit === false) {
  1.             'https://github.com/doctrine/dbal/issues/4966',
  2.             'Connection::getWrappedConnection() is deprecated.'
  3.                 ' Use Connection::getNativeConnection() to access the native connection.',
  4.         );
  5.         $this->connect();
  6.         assert($this->_conn !== null);
  7.         return $this->_conn;
  8.     }
in vendor/doctrine/dbal/src/Connection.php -> getWrappedConnection (line 1046)
  1.     ): Result {
  2.         if ($qcp !== null) {
  3.             return $this->executeCacheQuery($sql$params$types$qcp);
  4.         }
  5.         $connection $this->getWrappedConnection();
  6.         $logger $this->_config->getSQLLogger();
  7.         if ($logger !== null) {
  8.             $logger->startQuery($sql$params$types);
  9.         }
  1.      *
  2.      * @return Result
  3.      */
  4.     public function execute(Connection $conn, array $params, array $types)
  5.     {
  6.         return $conn->executeQuery($this->_sqlStatements$params$types$this->queryCacheProfile);
  7.     }
  8. }
  1.             $sqlParams,
  2.             $types,
  3.             $this->_em->getConnection()->getParams()
  4.         );
  5.         return $executor->execute($this->_em->getConnection(), $sqlParams$types);
  6.     }
  7.     /**
  8.      * @param array<string,mixed> $sqlParams
  9.      * @param array<string,Type>  $types
  1.             $setCacheEntry = static function ($data) use ($cache$result$cacheItem$realCacheKey): void {
  2.                 $cache->save($cacheItem->set($result + [$realCacheKey => $data]));
  3.             };
  4.         }
  5.         $stmt $this->_doExecute();
  6.         if (is_numeric($stmt)) {
  7.             $setCacheEntry($stmt);
  8.             return $stmt;
in vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php -> executeIgnoreQueryCache (line 1165)
  1.     {
  2.         if ($this->cacheable && $this->isCacheEnabled()) {
  3.             return $this->executeUsingQueryCache($parameters$hydrationMode);
  4.         }
  5.         return $this->executeIgnoreQueryCache($parameters$hydrationMode);
  6.     }
  7.     /**
  8.      * Execute query ignoring second level cache.
  9.      *
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function getEntities(): array
  5.     {
  6.         return $this->queryBuilder->getQuery()->execute();
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      * {@inheritdoc}
  2.      */
  3.     protected function loadChoices(): iterable
  4.     {
  5.         return $this->objectLoader
  6.             $this->objectLoader->getEntities()
  7.             : $this->manager->getRepository($this->class)->findAll();
  8.     }
  9.     /**
  10.      * @internal to be remove in Symfony 6
  1.      *
  2.      * {@inheritdoc}
  3.      */
  4.     public function loadChoiceList(callable $value null): ChoiceListInterface
  5.     {
  6.         return new ArrayChoiceList($this->choices ??= $this->loadChoices(), $value);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function getChoices(): array
  5.     {
  6.         return $this->loader->loadChoiceList($this->value)->getChoices();
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     public function createView(ChoiceListInterface $list, array|callable $preferredChoices null, callable|false $label null, callable $index null, callable $groupBy null, array|callable $attr null, array|callable $labelTranslationParameters = []): ChoiceListView
  2.     {
  3.         $preferredViews = [];
  4.         $preferredViewsOrder = [];
  5.         $otherViews = [];
  6.         $choices $list->getChoices();
  7.         $keys $list->getOriginalKeys();
  8.         if (!\is_callable($preferredChoices)) {
  9.             if (empty($preferredChoices)) {
  10.                 $preferredChoices null;
  1.             $labelTranslationParameters = static function ($choice) use ($accessor$labelTranslationParameters) {
  2.                 return $accessor->getValue($choice$labelTranslationParameters);
  3.             };
  4.         }
  5.         return $this->decoratedFactory->createView(
  6.             $list,
  7.             $preferredChoices,
  8.             $label,
  9.             $index,
  10.             $groupBy,
  1.         } elseif ([] !== $labelTranslationParameters) {
  2.             $cache false;
  3.         }
  4.         if (!$cache) {
  5.             return $this->decoratedFactory->createView(
  6.                 $list,
  7.                 $preferredChoices,
  8.                 $label,
  9.                 $index,
  10.                 $groupBy,
  1.         );
  2.     }
  3.     private function createChoiceListView(ChoiceListInterface $choiceList, array $options)
  4.     {
  5.         return $this->choiceListFactory->createView(
  6.             $choiceList,
  7.             $options['preferred_choices'],
  8.             $options['choice_label'],
  9.             $options['choice_name'],
  10.             $options['group_by'],
in vendor/symfony/form/Extension/Core/Type/ChoiceType.php -> createChoiceListView (line 237)
  1.         $choiceList $form->getConfig()->getAttribute('choice_list');
  2.         /** @var ChoiceListView $choiceListView */
  3.         $choiceListView $form->getConfig()->hasAttribute('choice_list_view')
  4.             ? $form->getConfig()->getAttribute('choice_list_view')
  5.             : $this->createChoiceListView($choiceList$options);
  6.         $view->vars array_replace($view->vars, [
  7.             'multiple' => $options['multiple'],
  8.             'expanded' => $options['expanded'],
  9.             'preferred_choices' => $choiceListView->preferredChoices,
  1.     {
  2.         if (null !== $this->parent) {
  3.             $this->parent->buildView($view$form$options);
  4.         }
  5.         $this->innerType->buildView($view$form$options);
  6.         foreach ($this->typeExtensions as $extension) {
  7.             $extension->buildView($view$form$options);
  8.         }
  9.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function buildView(FormView $viewFormInterface $form, array $options)
  5.     {
  6.         $this->proxiedType->buildView($view$form$options);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      * {@inheritdoc}
  2.      */
  3.     public function buildView(FormView $viewFormInterface $form, array $options)
  4.     {
  5.         if (null !== $this->parent) {
  6.             $this->parent->buildView($view$form$options);
  7.         }
  8.         $this->innerType->buildView($view$form$options);
  9.         foreach ($this->typeExtensions as $extension) {
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function buildView(FormView $viewFormInterface $form, array $options)
  5.     {
  6.         $this->proxiedType->buildView($view$form$options);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
in vendor/symfony/form/Form.php -> buildView (line 997)
  1.         // The methods createView(), buildView() and finishView() are called
  2.         // explicitly here in order to be able to override either of them
  3.         // in a custom resolved form type.
  4.         $view $type->createView($this$parent);
  5.         $type->buildView($view$this$options);
  6.         foreach ($this->children as $name => $child) {
  7.             $view->children[$name] = $child->createView($view);
  8.         }
in vendor/symfony/form/Form.php -> createView (line 1000)
  1.         $view $type->createView($this$parent);
  2.         $type->buildView($view$this$options);
  3.         foreach ($this->children as $name => $child) {
  4.             $view->children[$name] = $child->createView($view);
  5.         }
  6.         $this->sort($view->children);
  7.         $type->finishView($view$this$options);
Form->createView() in src/Controller/FrontEnd/ContactController.php (line 51)
  1.             return $this->redirectToRoute('frontend_contact');
  2.         }
  3.         return $this->render('front_end/contact/index.html.twig', [
  4.             'controller_name' => 'ContactController',
  5.             'Formcontact'=>$formcontact->createView(),
  6.             'Form'=>$form->createView()
  7.         ]);
  8.     }
  9. }
  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.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  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.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/scicaww/sci-cawally/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 21:53:53 deprecation User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead.
{
    "exception": {}
}
INFO 21:53:53 deprecation User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "liip_imagine.twig.mode" to "lazy" instead.
{
    "exception": {}
}
DEBUG 21:53:53 php Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/scicaww/sci-cawally/vendor/symfony/error-handler/DebugClassLoader.php",
        "line": 284,
        "trace": [
            {
                "file": "/home/scicaww/sci-cawally/vendor/symfony/stopwatch/StopwatchEvent.php",
                "line": 94,
                "function": "loadClass",
                "class": "Symfony\\Component\\ErrorHandler\\DebugClassLoader",
                "type": "->"
            }
        ],
        "count": 75
    }
}
INFO 21:53:53 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "http://www.scicawally.com/_profiler/latest?ip=36.41.75.167",
    "method": "GET"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 21:53:53 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 21:53:53 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 21:53:53 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 21:53:53 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 21:53:53 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 21:53:53 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 21:53:53 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 21:53:53 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 21:53:53 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 21:53:53 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 21:53:53 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 21:53:53 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 21:53:53 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 21:53:53 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 21:53:53 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:53:53 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 21:53:53 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 21:53:53 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}

Stack Traces 4

[4/4] ConnectionException
Doctrine\DBAL\Exception\ConnectionException:
An exception occurred in the driver: SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for scicawwwebmaster.mysql.db failed: Name or service not known

  at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:101
  at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert(object(Exception), null)
     (vendor/doctrine/dbal/src/Connection.php:1908)
  at Doctrine\DBAL\Connection->handleDriverException(object(Exception), null)
     (vendor/doctrine/dbal/src/Connection.php:1857)
  at Doctrine\DBAL\Connection->convertException(object(Exception))
     (vendor/doctrine/dbal/src/Connection.php:348)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/src/Connection.php:1619)
  at Doctrine\DBAL\Connection->getWrappedConnection()
     (vendor/doctrine/dbal/src/Connection.php:1046)
  at Doctrine\DBAL\Connection->executeQuery('SELECT p0_.id AS id_0, p0_.title AS title_1 FROM proprety_type p0_', array(), array(), null)
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31)
  at Doctrine\ORM\Query\Exec\SingleSelectExecutor->execute(object(Connection), array(), array())
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325)
  at Doctrine\ORM\Query->_doExecute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1211)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, null)
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1165)
  at Doctrine\ORM\AbstractQuery->execute()
     (vendor/symfony/doctrine-bridge/Form/ChoiceList/ORMQueryBuilderLoader.php:46)
  at Symfony\Bridge\Doctrine\Form\ChoiceList\ORMQueryBuilderLoader->getEntities()
     (vendor/symfony/doctrine-bridge/Form/ChoiceList/DoctrineChoiceLoader.php:59)
  at Symfony\Bridge\Doctrine\Form\ChoiceList\DoctrineChoiceLoader->loadChoices()
     (vendor/symfony/form/ChoiceList/Loader/AbstractChoiceLoader.php:31)
  at Symfony\Component\Form\ChoiceList\Loader\AbstractChoiceLoader->loadChoiceList(object(Closure))
     (vendor/symfony/form/ChoiceList/LazyChoiceList.php:59)
  at Symfony\Component\Form\ChoiceList\LazyChoiceList->getChoices()
     (vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php:70)
  at Symfony\Component\Form\ChoiceList\Factory\DefaultChoiceListFactory->createView(object(LazyChoiceList), array(), object(Closure), object(Closure), null, null, array())
     (vendor/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php:203)
  at Symfony\Component\Form\ChoiceList\Factory\PropertyAccessDecorator->createView(object(LazyChoiceList), array(), object(Closure), object(Closure), null, null, array())
     (vendor/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php:198)
  at Symfony\Component\Form\ChoiceList\Factory\CachingFactoryDecorator->createView(object(LazyChoiceList), array(), 'title', object(Closure), null, null, array())
     (vendor/symfony/form/Extension/Core/Type/ChoiceType.php:469)
  at Symfony\Component\Form\Extension\Core\Type\ChoiceType->createChoiceListView(object(LazyChoiceList), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/Core/Type/ChoiceType.php:237)
  at Symfony\Component\Form\Extension\Core\Type\ChoiceType->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/ResolvedFormType.php:138)
  at Symfony\Component\Form\ResolvedFormType->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:105)
  at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/ResolvedFormType.php:135)
  at Symfony\Component\Form\ResolvedFormType->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:105)
  at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Form.php:997)
  at Symfony\Component\Form\Form->createView(object(FormView))
     (vendor/symfony/form/Form.php:1000)
  at Symfony\Component\Form\Form->createView()
     (src/Controller/FrontEnd/ContactController.php:51)
  at App\Controller\FrontEnd\ContactController->index(object(Request), object(Mails))
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/home/scicaww/sci-cawally/vendor/autoload_runtime.php')
     (public/index.php:5)                
[3/4] Exception
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for scicawwwebmaster.mysql.db failed: Name or service not known

  at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:28
  at Doctrine\DBAL\Driver\PDO\Exception::new(object(PDOException))
     (vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:34)
  at Doctrine\DBAL\Driver\PDO\MySQL\Driver->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:26)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/doctrine/dbal/src/Logging/Driver.php:31)
  at Doctrine\DBAL\Logging\Driver->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:26)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php:41)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Driver->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/doctrine/dbal/src/Connection.php:346)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/src/Connection.php:1619)
  at Doctrine\DBAL\Connection->getWrappedConnection()
     (vendor/doctrine/dbal/src/Connection.php:1046)
  at Doctrine\DBAL\Connection->executeQuery('SELECT p0_.id AS id_0, p0_.title AS title_1 FROM proprety_type p0_', array(), array(), null)
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31)
  at Doctrine\ORM\Query\Exec\SingleSelectExecutor->execute(object(Connection), array(), array())
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325)
  at Doctrine\ORM\Query->_doExecute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1211)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, null)
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1165)
  at Doctrine\ORM\AbstractQuery->execute()
     (vendor/symfony/doctrine-bridge/Form/ChoiceList/ORMQueryBuilderLoader.php:46)
  at Symfony\Bridge\Doctrine\Form\ChoiceList\ORMQueryBuilderLoader->getEntities()
     (vendor/symfony/doctrine-bridge/Form/ChoiceList/DoctrineChoiceLoader.php:59)
  at Symfony\Bridge\Doctrine\Form\ChoiceList\DoctrineChoiceLoader->loadChoices()
     (vendor/symfony/form/ChoiceList/Loader/AbstractChoiceLoader.php:31)
  at Symfony\Component\Form\ChoiceList\Loader\AbstractChoiceLoader->loadChoiceList(object(Closure))
     (vendor/symfony/form/ChoiceList/LazyChoiceList.php:59)
  at Symfony\Component\Form\ChoiceList\LazyChoiceList->getChoices()
     (vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php:70)
  at Symfony\Component\Form\ChoiceList\Factory\DefaultChoiceListFactory->createView(object(LazyChoiceList), array(), object(Closure), object(Closure), null, null, array())
     (vendor/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php:203)
  at Symfony\Component\Form\ChoiceList\Factory\PropertyAccessDecorator->createView(object(LazyChoiceList), array(), object(Closure), object(Closure), null, null, array())
     (vendor/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php:198)
  at Symfony\Component\Form\ChoiceList\Factory\CachingFactoryDecorator->createView(object(LazyChoiceList), array(), 'title', object(Closure), null, null, array())
     (vendor/symfony/form/Extension/Core/Type/ChoiceType.php:469)
  at Symfony\Component\Form\Extension\Core\Type\ChoiceType->createChoiceListView(object(LazyChoiceList), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/Core/Type/ChoiceType.php:237)
  at Symfony\Component\Form\Extension\Core\Type\ChoiceType->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/ResolvedFormType.php:138)
  at Symfony\Component\Form\ResolvedFormType->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:105)
  at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/ResolvedFormType.php:135)
  at Symfony\Component\Form\ResolvedFormType->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:105)
  at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Form.php:997)
  at Symfony\Component\Form\Form->createView(object(FormView))
     (vendor/symfony/form/Form.php:1000)
  at Symfony\Component\Form\Form->createView()
     (src/Controller/FrontEnd/ContactController.php:51)
  at App\Controller\FrontEnd\ContactController->index(object(Request), object(Mails))
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/home/scicaww/sci-cawally/vendor/autoload_runtime.php')
     (public/index.php:5)                
[2/4] PDOException
PDOException:
SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for scicawwwebmaster.mysql.db failed: Name or service not known

  at vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:27
  at PDO->__construct('mysql:host=scicawwwebmaster.mysql.db;port=3306;dbname=scicawwwebmaster;charset=utf8mb4;', 'scicawwwebmaster', object(SensitiveParameterValue), array())
     (vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:27)
  at Doctrine\DBAL\Driver\PDO\MySQL\Driver->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:26)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/doctrine/dbal/src/Logging/Driver.php:31)
  at Doctrine\DBAL\Logging\Driver->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:26)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php:41)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Driver->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/doctrine/dbal/src/Connection.php:346)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/src/Connection.php:1619)
  at Doctrine\DBAL\Connection->getWrappedConnection()
     (vendor/doctrine/dbal/src/Connection.php:1046)
  at Doctrine\DBAL\Connection->executeQuery('SELECT p0_.id AS id_0, p0_.title AS title_1 FROM proprety_type p0_', array(), array(), null)
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31)
  at Doctrine\ORM\Query\Exec\SingleSelectExecutor->execute(object(Connection), array(), array())
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325)
  at Doctrine\ORM\Query->_doExecute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1211)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, null)
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1165)
  at Doctrine\ORM\AbstractQuery->execute()
     (vendor/symfony/doctrine-bridge/Form/ChoiceList/ORMQueryBuilderLoader.php:46)
  at Symfony\Bridge\Doctrine\Form\ChoiceList\ORMQueryBuilderLoader->getEntities()
     (vendor/symfony/doctrine-bridge/Form/ChoiceList/DoctrineChoiceLoader.php:59)
  at Symfony\Bridge\Doctrine\Form\ChoiceList\DoctrineChoiceLoader->loadChoices()
     (vendor/symfony/form/ChoiceList/Loader/AbstractChoiceLoader.php:31)
  at Symfony\Component\Form\ChoiceList\Loader\AbstractChoiceLoader->loadChoiceList(object(Closure))
     (vendor/symfony/form/ChoiceList/LazyChoiceList.php:59)
  at Symfony\Component\Form\ChoiceList\LazyChoiceList->getChoices()
     (vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php:70)
  at Symfony\Component\Form\ChoiceList\Factory\DefaultChoiceListFactory->createView(object(LazyChoiceList), array(), object(Closure), object(Closure), null, null, array())
     (vendor/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php:203)
  at Symfony\Component\Form\ChoiceList\Factory\PropertyAccessDecorator->createView(object(LazyChoiceList), array(), object(Closure), object(Closure), null, null, array())
     (vendor/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php:198)
  at Symfony\Component\Form\ChoiceList\Factory\CachingFactoryDecorator->createView(object(LazyChoiceList), array(), 'title', object(Closure), null, null, array())
     (vendor/symfony/form/Extension/Core/Type/ChoiceType.php:469)
  at Symfony\Component\Form\Extension\Core\Type\ChoiceType->createChoiceListView(object(LazyChoiceList), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/Core/Type/ChoiceType.php:237)
  at Symfony\Component\Form\Extension\Core\Type\ChoiceType->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/ResolvedFormType.php:138)
  at Symfony\Component\Form\ResolvedFormType->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:105)
  at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/ResolvedFormType.php:135)
  at Symfony\Component\Form\ResolvedFormType->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:105)
  at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Form.php:997)
  at Symfony\Component\Form\Form->createView(object(FormView))
     (vendor/symfony/form/Form.php:1000)
  at Symfony\Component\Form\Form->createView()
     (src/Controller/FrontEnd/ContactController.php:51)
  at App\Controller\FrontEnd\ContactController->index(object(Request), object(Mails))
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/home/scicaww/sci-cawally/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/4] PDOException
PDOException:
PDO::__construct(): php_network_getaddresses: getaddrinfo for scicawwwebmaster.mysql.db failed: Name or service not known

  at vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:27
  at PDO->__construct('mysql:host=scicawwwebmaster.mysql.db;port=3306;dbname=scicawwwebmaster;charset=utf8mb4;', 'scicawwwebmaster', object(SensitiveParameterValue), array())
     (vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:27)
  at Doctrine\DBAL\Driver\PDO\MySQL\Driver->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:26)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/doctrine/dbal/src/Logging/Driver.php:31)
  at Doctrine\DBAL\Logging\Driver->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:26)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php:41)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Driver->connect(array('url' => 'mysql://scicawwwebmaster:SCI2022k1@scicawwwebmaster.mysql.db:3306/scicawwwebmaster?serverVersion=5.7&charset=utf8mb4', 'driver' => 'pdo_mysql', 'host' => 'scicawwwebmaster.mysql.db', 'port' => 3306, 'user' => 'scicawwwebmaster', 'password' => 'SCI2022k1', 'driverOptions' => array(), 'defaultTableOptions' => array(), 'dbname' => 'scicawwwebmaster', 'serverVersion' => '5.7', 'charset' => 'utf8mb4'))
     (vendor/doctrine/dbal/src/Connection.php:346)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/src/Connection.php:1619)
  at Doctrine\DBAL\Connection->getWrappedConnection()
     (vendor/doctrine/dbal/src/Connection.php:1046)
  at Doctrine\DBAL\Connection->executeQuery('SELECT p0_.id AS id_0, p0_.title AS title_1 FROM proprety_type p0_', array(), array(), null)
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31)
  at Doctrine\ORM\Query\Exec\SingleSelectExecutor->execute(object(Connection), array(), array())
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:325)
  at Doctrine\ORM\Query->_doExecute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1211)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, null)
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1165)
  at Doctrine\ORM\AbstractQuery->execute()
     (vendor/symfony/doctrine-bridge/Form/ChoiceList/ORMQueryBuilderLoader.php:46)
  at Symfony\Bridge\Doctrine\Form\ChoiceList\ORMQueryBuilderLoader->getEntities()
     (vendor/symfony/doctrine-bridge/Form/ChoiceList/DoctrineChoiceLoader.php:59)
  at Symfony\Bridge\Doctrine\Form\ChoiceList\DoctrineChoiceLoader->loadChoices()
     (vendor/symfony/form/ChoiceList/Loader/AbstractChoiceLoader.php:31)
  at Symfony\Component\Form\ChoiceList\Loader\AbstractChoiceLoader->loadChoiceList(object(Closure))
     (vendor/symfony/form/ChoiceList/LazyChoiceList.php:59)
  at Symfony\Component\Form\ChoiceList\LazyChoiceList->getChoices()
     (vendor/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php:70)
  at Symfony\Component\Form\ChoiceList\Factory\DefaultChoiceListFactory->createView(object(LazyChoiceList), array(), object(Closure), object(Closure), null, null, array())
     (vendor/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php:203)
  at Symfony\Component\Form\ChoiceList\Factory\PropertyAccessDecorator->createView(object(LazyChoiceList), array(), object(Closure), object(Closure), null, null, array())
     (vendor/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php:198)
  at Symfony\Component\Form\ChoiceList\Factory\CachingFactoryDecorator->createView(object(LazyChoiceList), array(), 'title', object(Closure), null, null, array())
     (vendor/symfony/form/Extension/Core/Type/ChoiceType.php:469)
  at Symfony\Component\Form\Extension\Core\Type\ChoiceType->createChoiceListView(object(LazyChoiceList), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/Core/Type/ChoiceType.php:237)
  at Symfony\Component\Form\Extension\Core\Type\ChoiceType->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/ResolvedFormType.php:138)
  at Symfony\Component\Form\ResolvedFormType->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:105)
  at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/ResolvedFormType.php:135)
  at Symfony\Component\Form\ResolvedFormType->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php:105)
  at Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy->buildView(object(FormView), object(Form), array('block_name' => null, 'disabled' => false, 'label_format' => null, 'label_translation_parameters' => array(), 'attr_translation_parameters' => array(), 'translation_domain' => null, 'auto_initialize' => true, 'trim' => false, 'property_path' => null, 'mapped' => true, 'by_reference' => true, 'inherit_data' => false, 'method' => 'POST', 'post_max_size_message' => 'The uploaded file was too large. Please try to upload a smaller file.', 'allow_file_upload' => false, 'help_translation_parameters' => array(), 'invalid_message' => 'The selected choice is invalid.', 'invalid_message_parameters' => array(), 'error_mapping' => array(), 'allow_extra_fields' => false, 'extra_fields_message' => 'This form should not contain extra fields.', 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_message' => 'The CSRF token is invalid. Please try to resubmit the form.', 'csrf_token_manager' => object(CsrfTokenManager), 'csrf_token_id' => null, 'block_prefix' => null, 'label' => false, 'row_attr' => array(), 'label_html' => false, 'attr' => array('class' => 'form-select border-0 py-3'), 'priority' => 0, 'data_class' => null, 'expanded' => false, 'multiple' => false, 'empty_data' => '', 'required' => false, 'error_bubbling' => false, 'label_attr' => array(), 'compound' => false, 'action' => '', 'upload_max_size_message' => object(Closure), 'help' => null, 'help_attr' => array(), 'help_html' => false, 'is_empty_callback' => null, 'getter' => null, 'setter' => null, 'form_attr' => false, 'validation_groups' => null, 'constraints' => array(), 'choices' => null, 'choice_filter' => null, 'class' => 'App\\Entity\\Admin\\PropretyType', 'em' => object(EntityManager_9a5be93), 'query_builder' => null, 'id_reader' => object(IdReader), 'choice_loader' => object(ChoiceLoader), 'choice_label' => 'title', 'choice_name' => object(ChoiceFieldName), 'choice_value' => object(ChoiceValue), 'choice_attr' => null, 'choice_translation_parameters' => array(), 'preferred_choices' => array(), 'group_by' => null, 'placeholder' => 'Type de bien', 'choice_translation_domain' => false))
     (vendor/symfony/form/Form.php:997)
  at Symfony\Component\Form\Form->createView(object(FormView))
     (vendor/symfony/form/Form.php:1000)
  at Symfony\Component\Form\Form->createView()
     (src/Controller/FrontEnd/ContactController.php:51)
  at App\Controller\FrontEnd\ContactController->index(object(Request), object(Mails))
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/home/scicaww/sci-cawally/vendor/autoload_runtime.php')
     (public/index.php:5)