https://demo.easytransfer24.de/login

Exceptions

An exception has been thrown during the rendering of a template ("An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.applicant_time_ride_payout_calculated_per15min' in 'field list'").

Exceptions 4

Twig\Error\ RuntimeError

  1. {% block body %}
  2.     <div class="container">
  3.         <div style="margin-top:80px;text-align:center;">
  4.             {% if platformSetup.getMainLogo is not null %}
  5.                 <img src="{{ (platformSetup.getMainLogo.path ~  platformSetup.getMainLogo.physicalFileName)  | imagine_filter('main_logo')  }}">
  6.             {% endif %}
  7.             {# <img src="{{ asset("bundles/layout/images/" ~ kmg_app_logo_image ) }}">  #}
  8.             {% if session is not null %}
  1.         echo "</head>
  2. <body style=\"height:100%;\">
  3.     <div id=\"ajax-loading\"><span>Einen Augenblick bitte...</span></div>
  4. ";
  5.         // line 40
  6.         $this->displayBlock('body'$context$blocks);
  7.         // line 43
  8.         echo "
  9. ";
  10.         // line 44
  11.         $this->displayBlock('globalScript'$context$blocks);
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         // line 2
  2.         $macros["bsm"] = $this->macros["bsm"] = $this->loadTemplate("@DiplixKMG/Macro/blocks.html.twig""Auth/login.html.twig"2)->unwrap();
  3.         // line 1
  4.         $this->parent $this->loadTemplate("base.html.twig""Auth/login.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  8.         
  9.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 390)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render(array $context = []): string
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context\func_get_args()[1] ?? []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], ?Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render() in src/Diplix/KMGBundle/Controller/AuthController.php (line 58)
  1.             'Auth/login.html.twig',
  2.             array(
  3.                 // last username entered by the user
  4.                 'last_username' => $lastUsername,
  5.                 'error'         => $error,
  6.                 'platformSetup' => $this->ccp
  7.             )
  8.         );
  9.     }
in vendor/symfony/http-kernel/HttpKernel.php -> loginAction (line 163)
  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.     }
Kernel->handle() in web/app.php (line 38)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new AppKernel($_SERVER['APP_ENV'], (bool)$_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Doctrine\DBAL\Exception\ InvalidFieldNameException

An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.applicant_time_ride_payout_calculated_per15min' in 'field list'

  1.                 return new UniqueConstraintViolationException($exception$query);
  2.             case 1054:
  3.             case 1166:
  4.             case 1611:
  5.                 return new InvalidFieldNameException($exception$query);
  6.             case 1052:
  7.             case 1060:
  8.             case 1110:
  9.                 return new NonUniqueFieldNameException($exception$query);
  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 1881)
  1.         Driver\Exception $e,
  2.         string $sql,
  3.         array $params = [],
  4.         array $types = []
  5.     ): DriverException {
  6.         return $this->handleDriverException($e, new Query($sql$params$types));
  7.     }
  8.     /** @internal */
  9.     final public function convertException(Driver\Exception $e): DriverException
  10.     {
in vendor/doctrine/dbal/src/Connection.php -> convertExceptionDuringQuery (line 1106)
  1.                 $result $connection->query($sql);
  2.             }
  3.             return new Result($result$this);
  4.         } catch (Driver\Exception $e) {
  5.             throw $this->convertExceptionDuringQuery($e$sql$params$types);
  6.         } finally {
  7.             if ($logger !== null) {
  8.                 $logger->stopQuery();
  9.             }
  10.         }
  1.     {
  2.         $this->switchPersisterContext($offset$limit);
  3.         $sql              $this->getSelectSQL($criterianullnull$limit$offset$orderBy);
  4.         [$params$types] = $this->expandParameters($criteria);
  5.         $stmt             $this->conn->executeQuery($sql$params$types);
  6.         $hydrator $this->em->newHydrator($this->currentPersisterContext->selectJoinSql Query::HYDRATE_OBJECT Query::HYDRATE_SIMPLEOBJECT);
  7.         return $hydrator->hydrateAll($stmt$this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);
  8.     }
  1.      */
  2.     public function findBy(array $criteria, ?array $orderBy null$limit null$offset null)
  3.     {
  4.         $persister $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
  5.         return $persister->loadAll($criteria$orderBy$limit$offset);
  6.     }
  7.     /**
  8.      * Finds a single entity by a set of criteria.
  9.      *
  1. class PlatformClientRepository extends BasicRepository
  2. {
  3.     public function fetch()
  4.     {
  5.         $all $this->findBy([]);
  6.         if (count($all)!==1)
  7.             throw new \UnexpectedValueException('Expecting exactly one platform client configuration !');
  8.         return $all[0];
  9.     }
PlatformClientRepository->fetch() in src/Diplix/KMGBundle/Helper/ClientConfigProvider.php (line 33)
  1.     protected function initialize()
  2.     {
  3.         if ($this->platformClient!==null) return;
  4.         $repo $this->em->getRepository(PlatformClient::class);
  5.         $this->platformClient $repo->fetch();
  6.     }
  7.     public function getStripe(): StripeEndpoint
  8.     {
  9.         return   $this->endpointFactory->createFromShortcode(Endpoint::TYPE_STRIPE,[
ClientConfigProvider->initialize() in src/Diplix/KMGBundle/Helper/ClientConfigProvider.php (line 58)
  1.         return $this->getPdfLogo()!== null ?  '@' stream_get_contents$this->fileRepo->getStream($this->getPdfLogo()) ) : null;
  2.     }
  3.     public function __call($method$arguments)
  4.     {
  5.         $this->initialize();
  6.         if (
  7.             (=== strpos($method'get'))
  8.             ||
  9.             (=== strpos($method'is'))
  10.             )
  1.     }
  2.     // Some objects throw exceptions when they have __call, and the method we try
  3.     // to call is not supported. If ignoreStrictCheck is true, we should return null.
  4.     try {
  5.         $ret $object->$method(...$arguments);
  6.     } catch (\BadMethodCallException $e) {
  7.         if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
  8.             return;
  9.         }
  10.         throw $e;
  1.     <div class=\"container\">
  2.         <div style=\"margin-top:80px;text-align:center;\">
  3.             ";
  4.         // line 11
  5.         if ( !(null === twig_get_attribute($this->env$this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup"$context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.'11$this->source); })()), "getMainLogo", [], "any"falsefalsefalse11))) {
  6.             // line 12
  7.             echo "                <img src=\"";
  8.             echo twig_escape_filter($this->env$this->extensions['Liip\ImagineBundle\Templating\FilterExtension']->filter((twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup"$context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.'12$this->source); })()), "getMainLogo", [], "any"falsefalsefalse12), "path", [], "any"falsefalsefalse12) . twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup"$context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.'12$this->source); })()), "getMainLogo", [], "any"falsefalsefalse12), "physicalFileName", [], "any"falsefalsefalse12)), "main_logo"), "html"nulltrue);
  9.             echo "\">
  10.             ";
in vendor/twig/twig/src/Template.php -> block_body (line 182)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.         echo "</head>
  2. <body style=\"height:100%;\">
  3.     <div id=\"ajax-loading\"><span>Einen Augenblick bitte...</span></div>
  4. ";
  5.         // line 40
  6.         $this->displayBlock('body'$context$blocks);
  7.         // line 43
  8.         echo "
  9. ";
  10.         // line 44
  11.         $this->displayBlock('globalScript'$context$blocks);
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         // line 2
  2.         $macros["bsm"] = $this->macros["bsm"] = $this->loadTemplate("@DiplixKMG/Macro/blocks.html.twig""Auth/login.html.twig"2)->unwrap();
  3.         // line 1
  4.         $this->parent $this->loadTemplate("base.html.twig""Auth/login.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  8.         
  9.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 390)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render(array $context = []): string
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context\func_get_args()[1] ?? []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], ?Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render() in src/Diplix/KMGBundle/Controller/AuthController.php (line 58)
  1.             'Auth/login.html.twig',
  2.             array(
  3.                 // last username entered by the user
  4.                 'last_username' => $lastUsername,
  5.                 'error'         => $error,
  6.                 'platformSetup' => $this->ccp
  7.             )
  8.         );
  9.     }
in vendor/symfony/http-kernel/HttpKernel.php -> loginAction (line 163)
  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.     }
Kernel->handle() in web/app.php (line 38)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new AppKernel($_SERVER['APP_ENV'], (bool)$_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Doctrine\DBAL\Driver\PDO\ Exception

SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.applicant_time_ride_payout_calculated_per15min' in 'field list'

  1.         } else {
  2.             $code     $exception->getCode();
  3.             $sqlState null;
  4.         }
  5.         return new self($exception->getMessage(), $sqlState$code$exception);
  6.     }
  7. }
  1.             $stmt $this->connection->query($sql);
  2.             assert($stmt instanceof PDOStatement);
  3.             return new Result($stmt);
  4.         } catch (PDOException $exception) {
  5.             throw Exception::new($exception);
  6.         }
  7.     }
  8.     /**
  9.      * {@inheritDoc}
  1.         return $this->wrappedConnection->prepare($sql);
  2.     }
  3.     public function query(string $sql): Result
  4.     {
  5.         return $this->wrappedConnection->query($sql);
  6.     }
  7.     /**
  8.      * {@inheritDoc}
  9.      */
  1.     public function query(string $sql): Result
  2.     {
  3.         $this->logger->debug('Executing query: {sql}', ['sql' => $sql]);
  4.         return parent::query($sql);
  5.     }
  6.     public function exec(string $sql): int
  7.     {
  8.         $this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
  1.         return $this->wrappedConnection->prepare($sql);
  2.     }
  3.     public function query(string $sql): Result
  4.     {
  5.         return $this->wrappedConnection->query($sql);
  6.     }
  7.     /**
  8.      * {@inheritDoc}
  9.      */
  1.             $this->stopwatch->start('doctrine''doctrine');
  2.         }
  3.         $query->start();
  4.         try {
  5.             return parent::query($sql);
  6.         } finally {
  7.             $query->stop();
  8.             if ($this->stopwatch) {
  9.                 $this->stopwatch->stop('doctrine');
  10.             }
  1.                 $this->bindParameters($stmt$params$types);
  2.                 $result $stmt->execute();
  3.             } else {
  4.                 $result $connection->query($sql);
  5.             }
  6.             return new Result($result$this);
  7.         } catch (Driver\Exception $e) {
  8.             throw $this->convertExceptionDuringQuery($e$sql$params$types);
  1.     {
  2.         $this->switchPersisterContext($offset$limit);
  3.         $sql              $this->getSelectSQL($criterianullnull$limit$offset$orderBy);
  4.         [$params$types] = $this->expandParameters($criteria);
  5.         $stmt             $this->conn->executeQuery($sql$params$types);
  6.         $hydrator $this->em->newHydrator($this->currentPersisterContext->selectJoinSql Query::HYDRATE_OBJECT Query::HYDRATE_SIMPLEOBJECT);
  7.         return $hydrator->hydrateAll($stmt$this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);
  8.     }
  1.      */
  2.     public function findBy(array $criteria, ?array $orderBy null$limit null$offset null)
  3.     {
  4.         $persister $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
  5.         return $persister->loadAll($criteria$orderBy$limit$offset);
  6.     }
  7.     /**
  8.      * Finds a single entity by a set of criteria.
  9.      *
  1. class PlatformClientRepository extends BasicRepository
  2. {
  3.     public function fetch()
  4.     {
  5.         $all $this->findBy([]);
  6.         if (count($all)!==1)
  7.             throw new \UnexpectedValueException('Expecting exactly one platform client configuration !');
  8.         return $all[0];
  9.     }
PlatformClientRepository->fetch() in src/Diplix/KMGBundle/Helper/ClientConfigProvider.php (line 33)
  1.     protected function initialize()
  2.     {
  3.         if ($this->platformClient!==null) return;
  4.         $repo $this->em->getRepository(PlatformClient::class);
  5.         $this->platformClient $repo->fetch();
  6.     }
  7.     public function getStripe(): StripeEndpoint
  8.     {
  9.         return   $this->endpointFactory->createFromShortcode(Endpoint::TYPE_STRIPE,[
ClientConfigProvider->initialize() in src/Diplix/KMGBundle/Helper/ClientConfigProvider.php (line 58)
  1.         return $this->getPdfLogo()!== null ?  '@' stream_get_contents$this->fileRepo->getStream($this->getPdfLogo()) ) : null;
  2.     }
  3.     public function __call($method$arguments)
  4.     {
  5.         $this->initialize();
  6.         if (
  7.             (=== strpos($method'get'))
  8.             ||
  9.             (=== strpos($method'is'))
  10.             )
  1.     }
  2.     // Some objects throw exceptions when they have __call, and the method we try
  3.     // to call is not supported. If ignoreStrictCheck is true, we should return null.
  4.     try {
  5.         $ret $object->$method(...$arguments);
  6.     } catch (\BadMethodCallException $e) {
  7.         if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
  8.             return;
  9.         }
  10.         throw $e;
  1.     <div class=\"container\">
  2.         <div style=\"margin-top:80px;text-align:center;\">
  3.             ";
  4.         // line 11
  5.         if ( !(null === twig_get_attribute($this->env$this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup"$context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.'11$this->source); })()), "getMainLogo", [], "any"falsefalsefalse11))) {
  6.             // line 12
  7.             echo "                <img src=\"";
  8.             echo twig_escape_filter($this->env$this->extensions['Liip\ImagineBundle\Templating\FilterExtension']->filter((twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup"$context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.'12$this->source); })()), "getMainLogo", [], "any"falsefalsefalse12), "path", [], "any"falsefalsefalse12) . twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup"$context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.'12$this->source); })()), "getMainLogo", [], "any"falsefalsefalse12), "physicalFileName", [], "any"falsefalsefalse12)), "main_logo"), "html"nulltrue);
  9.             echo "\">
  10.             ";
in vendor/twig/twig/src/Template.php -> block_body (line 182)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.         echo "</head>
  2. <body style=\"height:100%;\">
  3.     <div id=\"ajax-loading\"><span>Einen Augenblick bitte...</span></div>
  4. ";
  5.         // line 40
  6.         $this->displayBlock('body'$context$blocks);
  7.         // line 43
  8.         echo "
  9. ";
  10.         // line 44
  11.         $this->displayBlock('globalScript'$context$blocks);
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         // line 2
  2.         $macros["bsm"] = $this->macros["bsm"] = $this->loadTemplate("@DiplixKMG/Macro/blocks.html.twig""Auth/login.html.twig"2)->unwrap();
  3.         // line 1
  4.         $this->parent $this->loadTemplate("base.html.twig""Auth/login.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  8.         
  9.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 390)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render(array $context = []): string
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context\func_get_args()[1] ?? []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], ?Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render() in src/Diplix/KMGBundle/Controller/AuthController.php (line 58)
  1.             'Auth/login.html.twig',
  2.             array(
  3.                 // last username entered by the user
  4.                 'last_username' => $lastUsername,
  5.                 'error'         => $error,
  6.                 'platformSetup' => $this->ccp
  7.             )
  8.         );
  9.     }
in vendor/symfony/http-kernel/HttpKernel.php -> loginAction (line 163)
  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.     }
Kernel->handle() in web/app.php (line 38)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new AppKernel($_SERVER['APP_ENV'], (bool)$_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

PDOException

SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.applicant_time_ride_payout_calculated_per15min' in 'field list'

  1.     }
  2.     public function query(string $sql): ResultInterface
  3.     {
  4.         try {
  5.             $stmt $this->connection->query($sql);
  6.             assert($stmt instanceof PDOStatement);
  7.             return new Result($stmt);
  8.         } catch (PDOException $exception) {
  9.             throw Exception::new($exception);
  1.     }
  2.     public function query(string $sql): ResultInterface
  3.     {
  4.         try {
  5.             $stmt $this->connection->query($sql);
  6.             assert($stmt instanceof PDOStatement);
  7.             return new Result($stmt);
  8.         } catch (PDOException $exception) {
  9.             throw Exception::new($exception);
  1.         return $this->wrappedConnection->prepare($sql);
  2.     }
  3.     public function query(string $sql): Result
  4.     {
  5.         return $this->wrappedConnection->query($sql);
  6.     }
  7.     /**
  8.      * {@inheritDoc}
  9.      */
  1.     public function query(string $sql): Result
  2.     {
  3.         $this->logger->debug('Executing query: {sql}', ['sql' => $sql]);
  4.         return parent::query($sql);
  5.     }
  6.     public function exec(string $sql): int
  7.     {
  8.         $this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
  1.         return $this->wrappedConnection->prepare($sql);
  2.     }
  3.     public function query(string $sql): Result
  4.     {
  5.         return $this->wrappedConnection->query($sql);
  6.     }
  7.     /**
  8.      * {@inheritDoc}
  9.      */
  1.             $this->stopwatch->start('doctrine''doctrine');
  2.         }
  3.         $query->start();
  4.         try {
  5.             return parent::query($sql);
  6.         } finally {
  7.             $query->stop();
  8.             if ($this->stopwatch) {
  9.                 $this->stopwatch->stop('doctrine');
  10.             }
  1.                 $this->bindParameters($stmt$params$types);
  2.                 $result $stmt->execute();
  3.             } else {
  4.                 $result $connection->query($sql);
  5.             }
  6.             return new Result($result$this);
  7.         } catch (Driver\Exception $e) {
  8.             throw $this->convertExceptionDuringQuery($e$sql$params$types);
  1.     {
  2.         $this->switchPersisterContext($offset$limit);
  3.         $sql              $this->getSelectSQL($criterianullnull$limit$offset$orderBy);
  4.         [$params$types] = $this->expandParameters($criteria);
  5.         $stmt             $this->conn->executeQuery($sql$params$types);
  6.         $hydrator $this->em->newHydrator($this->currentPersisterContext->selectJoinSql Query::HYDRATE_OBJECT Query::HYDRATE_SIMPLEOBJECT);
  7.         return $hydrator->hydrateAll($stmt$this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);
  8.     }
  1.      */
  2.     public function findBy(array $criteria, ?array $orderBy null$limit null$offset null)
  3.     {
  4.         $persister $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);
  5.         return $persister->loadAll($criteria$orderBy$limit$offset);
  6.     }
  7.     /**
  8.      * Finds a single entity by a set of criteria.
  9.      *
  1. class PlatformClientRepository extends BasicRepository
  2. {
  3.     public function fetch()
  4.     {
  5.         $all $this->findBy([]);
  6.         if (count($all)!==1)
  7.             throw new \UnexpectedValueException('Expecting exactly one platform client configuration !');
  8.         return $all[0];
  9.     }
PlatformClientRepository->fetch() in src/Diplix/KMGBundle/Helper/ClientConfigProvider.php (line 33)
  1.     protected function initialize()
  2.     {
  3.         if ($this->platformClient!==null) return;
  4.         $repo $this->em->getRepository(PlatformClient::class);
  5.         $this->platformClient $repo->fetch();
  6.     }
  7.     public function getStripe(): StripeEndpoint
  8.     {
  9.         return   $this->endpointFactory->createFromShortcode(Endpoint::TYPE_STRIPE,[
ClientConfigProvider->initialize() in src/Diplix/KMGBundle/Helper/ClientConfigProvider.php (line 58)
  1.         return $this->getPdfLogo()!== null ?  '@' stream_get_contents$this->fileRepo->getStream($this->getPdfLogo()) ) : null;
  2.     }
  3.     public function __call($method$arguments)
  4.     {
  5.         $this->initialize();
  6.         if (
  7.             (=== strpos($method'get'))
  8.             ||
  9.             (=== strpos($method'is'))
  10.             )
  1.     }
  2.     // Some objects throw exceptions when they have __call, and the method we try
  3.     // to call is not supported. If ignoreStrictCheck is true, we should return null.
  4.     try {
  5.         $ret $object->$method(...$arguments);
  6.     } catch (\BadMethodCallException $e) {
  7.         if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
  8.             return;
  9.         }
  10.         throw $e;
  1.     <div class=\"container\">
  2.         <div style=\"margin-top:80px;text-align:center;\">
  3.             ";
  4.         // line 11
  5.         if ( !(null === twig_get_attribute($this->env$this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup"$context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.'11$this->source); })()), "getMainLogo", [], "any"falsefalsefalse11))) {
  6.             // line 12
  7.             echo "                <img src=\"";
  8.             echo twig_escape_filter($this->env$this->extensions['Liip\ImagineBundle\Templating\FilterExtension']->filter((twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup"$context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.'12$this->source); })()), "getMainLogo", [], "any"falsefalsefalse12), "path", [], "any"falsefalsefalse12) . twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["platformSetup"]) || array_key_exists("platformSetup"$context) ? $context["platformSetup"] : (function () { throw new RuntimeError('Variable "platformSetup" does not exist.'12$this->source); })()), "getMainLogo", [], "any"falsefalsefalse12), "physicalFileName", [], "any"falsefalsefalse12)), "main_logo"), "html"nulltrue);
  9.             echo "\">
  10.             ";
in vendor/twig/twig/src/Template.php -> block_body (line 182)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.         echo "</head>
  2. <body style=\"height:100%;\">
  3.     <div id=\"ajax-loading\"><span>Einen Augenblick bitte...</span></div>
  4. ";
  5.         // line 40
  6.         $this->displayBlock('body'$context$blocks);
  7.         // line 43
  8.         echo "
  9. ";
  10.         // line 44
  11.         $this->displayBlock('globalScript'$context$blocks);
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         // line 2
  2.         $macros["bsm"] = $this->macros["bsm"] = $this->loadTemplate("@DiplixKMG/Macro/blocks.html.twig""Auth/login.html.twig"2)->unwrap();
  3.         // line 1
  4.         $this->parent $this->loadTemplate("base.html.twig""Auth/login.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  8.         
  9.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 390)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render(array $context = []): string
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context\func_get_args()[1] ?? []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], ?Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render() in src/Diplix/KMGBundle/Controller/AuthController.php (line 58)
  1.             'Auth/login.html.twig',
  2.             array(
  3.                 // last username entered by the user
  4.                 'last_username' => $lastUsername,
  5.                 'error'         => $error,
  6.                 'platformSetup' => $this->ccp
  7.             )
  8.         );
  9.     }
in vendor/symfony/http-kernel/HttpKernel.php -> loginAction (line 163)
  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.     }
Kernel->handle() in web/app.php (line 38)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new AppKernel($_SERVER['APP_ENV'], (bool)$_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 16:58:23 php User Deprecated: Since symfony/http-foundation 5.2: The "HEADER_X_FORWARDED_ALL" constant is deprecated, use either "HEADER_X_FORWARDED_FOR | HEADER_X_FORWARDED_HOST | HEADER_X_FORWARDED_PORT | HEADER_X_FORWARDED_PROTO" or "HEADER_X_FORWARDED_AWS_ELB" or "HEADER_X_FORWARDED_TRAEFIK" constants instead.
{
    "exception": {}
}
INFO 16:58:23 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "BoShurik\TelegramBotBundle\BoShurikTelegramBotBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:58:23 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "Kreait\Firebase\Symfony\Bundle\FirebaseBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:58:23 php User Deprecated: Since symfony/monolog-bridge 6.4: The "Symfony\Bridge\Monolog\Logger" class is deprecated, use HttpKernel's DebugLoggerConfigurator instead.
{
    "exception": {}
}
INFO 16:58:23 php 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 16:58:23 php 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": {}
}
INFO 16:58:23 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://demo.easytransfer24.de/_profiler/latest",
    "method": "GET"
}
INFO 16:58:23 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.factory.service" service is deprecated, use "session.storage.factory.native", "session.storage.factory.php_bridge" or "session.storage.factory.mock_file" instead.
{
    "exception": {}
}
INFO 16:58:23 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead.
{
    "exception": {}
}
INFO 16:58:23 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead.
{
    "exception": {}
}
INFO 16:58:23 php User Deprecated: Method "Doctrine\ORM\Query\Filter\SQLFilter::addFilterConstraint()" might add "string" as a native return type declaration in the future. Do the same in child class "Diplix\KMGBundle\Filter\BeDeletedFilter" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:58:23 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "host": "127.0.0.1",
        "port": null,
        "dbname": "kwdemo",
        "user": "kwdemo",
        "password": "<redacted>",
        "charset": "UTF8",
        "idle_connection_ttl": 600,
        "driverOptions": [],
        "defaultTableOptions": []
    }
}
INFO 16:58:24 php Deprecated: Diplix\KMGBundle\Entity\User implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary)
{
    "exception": {}
}
INFO 16:58:24 php User Deprecated: Class "Diplix\KMGBundle\Entity\User" should implement method "Symfony\Component\Security\Core\User\UserInterface::getUserIdentifier(): string": returns the identifier for this user (e.g. its username or email address).
{
    "exception": {}
}
INFO 16:58:24 php User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getUsername()" might add "string" as a native return type declaration in the future. Do the same in implementation "Diplix\KMGBundle\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:58:24 php User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getSalt()" might add "?string" as a native return type declaration in the future. Do the same in implementation "Diplix\KMGBundle\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:58:24 php User Deprecated: Method "Symfony\Component\Security\Core\User\EquatableInterface::isEqualTo()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Diplix\KMGBundle\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:58:24 php User Deprecated: Since symfony/http-foundation 5.2: The "HEADER_X_FORWARDED_ALL" constant is deprecated, use either "HEADER_X_FORWARDED_FOR | HEADER_X_FORWARDED_HOST | HEADER_X_FORWARDED_PORT | HEADER_X_FORWARDED_PROTO" or "HEADER_X_FORWARDED_AWS_ELB" or "HEADER_X_FORWARDED_TRAEFIK" constants instead.
{
    "exception": {}
}
INFO 16:58:24 php User Deprecated: Since symfony/http-foundation 5.2: The "HEADER_X_FORWARDED_ALL" constant is deprecated, use either "HEADER_X_FORWARDED_FOR | HEADER_X_FORWARDED_HOST | HEADER_X_FORWARDED_PORT | HEADER_X_FORWARDED_PROTO" or "HEADER_X_FORWARDED_AWS_ELB" or "HEADER_X_FORWARDED_TRAEFIK" constants instead.
{
    "exception": {}
}

Stack Traces 4

[4/4] RuntimeError
Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.applicant_time_ride_payout_calculated_per15min' in 'field list'").

  at app/Resources/views/Auth/login.html.twig:11
  at Twig\Template->displayBlock()
     (var/cache/domain_demo_easytransfer24_de/twig/87/870691e738a701935edca8c04d8cc2c5.php:94)
  at __TwigTemplate_d3da4eca6116a9038bef54816ed49fbc->doDisplay()
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:53)
  at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->doDisplay()
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (vendor/twig/twig/src/Template.php:390)
  at Twig\Template->render()
     (vendor/twig/twig/src/TemplateWrapper.php:45)
  at Twig\TemplateWrapper->render()
     (vendor/twig/twig/src/Environment.php:318)
  at Twig\Environment->render()
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView()
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render()
     (src/Diplix/KMGBundle/Controller/AuthController.php:58)
  at Diplix\KMGBundle\Controller\AuthController->loginAction()
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (web/app.php:38)                
[3/4] InvalidFieldNameException
Doctrine\DBAL\Exception\InvalidFieldNameException:
An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.applicant_time_ride_payout_calculated_per15min' in 'field list'

  at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:67
  at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert()
     (vendor/doctrine/dbal/src/Connection.php:1939)
  at Doctrine\DBAL\Connection->handleDriverException()
     (vendor/doctrine/dbal/src/Connection.php:1881)
  at Doctrine\DBAL\Connection->convertExceptionDuringQuery()
     (vendor/doctrine/dbal/src/Connection.php:1106)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:972)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll()
     (vendor/doctrine/orm/src/EntityRepository.php:224)
  at Doctrine\ORM\EntityRepository->findBy()
     (src/Diplix/KMGBundle/Repository/PlatformClientRepository.php:11)
  at Diplix\KMGBundle\Repository\PlatformClientRepository->fetch()
     (src/Diplix/KMGBundle/Helper/ClientConfigProvider.php:33)
  at Diplix\KMGBundle\Helper\ClientConfigProvider->initialize()
     (src/Diplix/KMGBundle/Helper/ClientConfigProvider.php:58)
  at Diplix\KMGBundle\Helper\ClientConfigProvider->__call()
     (vendor/twig/twig/src/Extension/CoreExtension.php:1567)
  at twig_get_attribute()
     (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:98)
  at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->block_body()
     (vendor/twig/twig/src/Template.php:182)
  at Twig\Template->displayBlock()
     (var/cache/domain_demo_easytransfer24_de/twig/87/870691e738a701935edca8c04d8cc2c5.php:94)
  at __TwigTemplate_d3da4eca6116a9038bef54816ed49fbc->doDisplay()
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:53)
  at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->doDisplay()
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (vendor/twig/twig/src/Template.php:390)
  at Twig\Template->render()
     (vendor/twig/twig/src/TemplateWrapper.php:45)
  at Twig\TemplateWrapper->render()
     (vendor/twig/twig/src/Environment.php:318)
  at Twig\Environment->render()
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView()
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render()
     (src/Diplix/KMGBundle/Controller/AuthController.php:58)
  at Diplix\KMGBundle\Controller\AuthController->loginAction()
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (web/app.php:38)                
[2/4] Exception
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.applicant_time_ride_payout_calculated_per15min' in 'field list'

  at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:28
  at Doctrine\DBAL\Driver\PDO\Exception::new()
     (vendor/doctrine/dbal/src/Driver/PDO/Connection.php:76)
  at Doctrine\DBAL\Driver\PDO\Connection->query()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
     (vendor/doctrine/dbal/src/Logging/Connection.php:43)
  at Doctrine\DBAL\Logging\Connection->query()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
     (vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php:69)
  at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Connection->query()
     (vendor/doctrine/dbal/src/Connection.php:1101)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:972)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll()
     (vendor/doctrine/orm/src/EntityRepository.php:224)
  at Doctrine\ORM\EntityRepository->findBy()
     (src/Diplix/KMGBundle/Repository/PlatformClientRepository.php:11)
  at Diplix\KMGBundle\Repository\PlatformClientRepository->fetch()
     (src/Diplix/KMGBundle/Helper/ClientConfigProvider.php:33)
  at Diplix\KMGBundle\Helper\ClientConfigProvider->initialize()
     (src/Diplix/KMGBundle/Helper/ClientConfigProvider.php:58)
  at Diplix\KMGBundle\Helper\ClientConfigProvider->__call()
     (vendor/twig/twig/src/Extension/CoreExtension.php:1567)
  at twig_get_attribute()
     (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:98)
  at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->block_body()
     (vendor/twig/twig/src/Template.php:182)
  at Twig\Template->displayBlock()
     (var/cache/domain_demo_easytransfer24_de/twig/87/870691e738a701935edca8c04d8cc2c5.php:94)
  at __TwigTemplate_d3da4eca6116a9038bef54816ed49fbc->doDisplay()
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:53)
  at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->doDisplay()
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (vendor/twig/twig/src/Template.php:390)
  at Twig\Template->render()
     (vendor/twig/twig/src/TemplateWrapper.php:45)
  at Twig\TemplateWrapper->render()
     (vendor/twig/twig/src/Environment.php:318)
  at Twig\Environment->render()
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView()
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render()
     (src/Diplix/KMGBundle/Controller/AuthController.php:58)
  at Diplix\KMGBundle\Controller\AuthController->loginAction()
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (web/app.php:38)                
[1/4] PDOException
PDOException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.applicant_time_ride_payout_calculated_per15min' in 'field list'

  at vendor/doctrine/dbal/src/Driver/PDO/Connection.php:71
  at PDO->query()
     (vendor/doctrine/dbal/src/Driver/PDO/Connection.php:71)
  at Doctrine\DBAL\Driver\PDO\Connection->query()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
     (vendor/doctrine/dbal/src/Logging/Connection.php:43)
  at Doctrine\DBAL\Logging\Connection->query()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
     (vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php:69)
  at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Connection->query()
     (vendor/doctrine/dbal/src/Connection.php:1101)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:972)
  at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll()
     (vendor/doctrine/orm/src/EntityRepository.php:224)
  at Doctrine\ORM\EntityRepository->findBy()
     (src/Diplix/KMGBundle/Repository/PlatformClientRepository.php:11)
  at Diplix\KMGBundle\Repository\PlatformClientRepository->fetch()
     (src/Diplix/KMGBundle/Helper/ClientConfigProvider.php:33)
  at Diplix\KMGBundle\Helper\ClientConfigProvider->initialize()
     (src/Diplix/KMGBundle/Helper/ClientConfigProvider.php:58)
  at Diplix\KMGBundle\Helper\ClientConfigProvider->__call()
     (vendor/twig/twig/src/Extension/CoreExtension.php:1567)
  at twig_get_attribute()
     (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:98)
  at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->block_body()
     (vendor/twig/twig/src/Template.php:182)
  at Twig\Template->displayBlock()
     (var/cache/domain_demo_easytransfer24_de/twig/87/870691e738a701935edca8c04d8cc2c5.php:94)
  at __TwigTemplate_d3da4eca6116a9038bef54816ed49fbc->doDisplay()
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (var/cache/domain_demo_easytransfer24_de/twig/85/858ff5f480df084498f68b9d9c1c24b9.php:53)
  at __TwigTemplate_f3cf9ddccbe5ecdae5c961475bf41db9->doDisplay()
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (vendor/twig/twig/src/Template.php:390)
  at Twig\Template->render()
     (vendor/twig/twig/src/TemplateWrapper.php:45)
  at Twig\TemplateWrapper->render()
     (vendor/twig/twig/src/Environment.php:318)
  at Twig\Environment->render()
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView()
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render()
     (src/Diplix/KMGBundle/Controller/AuthController.php:58)
  at Diplix\KMGBundle\Controller\AuthController->loginAction()
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (web/app.php:38)