https://dev.pholios.net/mikamatto/portfolio/album/test

Exceptions

[Syntax Error] line 0, col 105: Error: Expected Literal, got ','

Exceptions 2

Doctrine\ORM\Query\ QueryException

  1.      *
  2.      * @return QueryException
  3.      */
  4.     public static function syntaxError($message$previous null)
  5.     {
  6.         return new self('[Syntax Error] ' $message0$previous);
  7.     }
  8.     /**
  9.      * @param string         $message
  10.      * @param Exception|null $previous
  1.         $message  sprintf('line 0, col %d: Error: '$tokenPos);
  2.         $message .= $expected !== '' sprintf('Expected %s, got '$expected) : 'Unexpected ';
  3.         $message .= $this->lexer->lookahead === null 'end of string.' sprintf("'%s'"$token['value']);
  4.         throw QueryException::syntaxError($messageQueryException::dqlError($this->query->getDQL()));
  5.     }
  6.     /**
  7.      * Generates a new semantical error.
  8.      *
  1.                 );
  2.                 return new AST\Literal(AST\Literal::BOOLEAN$this->lexer->token['value']);
  3.             default:
  4.                 $this->syntaxError('Literal');
  5.         }
  6.     }
  7.     /**
  8.      * InParameter ::= Literal | InputParameter
  1.                 if ($peek !== null && $peek['value'] === '(') {
  2.                     return $this->FunctionDeclaration();
  3.                 }
  4.                 return $this->Literal();
  5.         }
  6.     }
  7.     /**
  8.      * StringExpression ::= StringPrimary | ResultVariable | "(" Subselect ")"
  1.         if ($isPlus || $this->lexer->isNextToken(Lexer::T_MINUS)) {
  2.             $this->match($isPlus Lexer::T_PLUS Lexer::T_MINUS);
  3.             $sign $isPlus;
  4.         }
  5.         $primary $this->ArithmeticPrimary();
  6.         // Phase 1 AST optimization: Prevent AST\ArithmeticFactor
  7.         // if only one AST\ArithmeticPrimary is defined
  8.         if ($sign === null) {
  9.             return $primary;
  1.      * @return ArithmeticTerm
  2.      */
  3.     public function ArithmeticTerm()
  4.     {
  5.         $factors   = [];
  6.         $factors[] = $this->ArithmeticFactor();
  7.         while (($isMult $this->lexer->isNextToken(Lexer::T_MULTIPLY)) || $this->lexer->isNextToken(Lexer::T_DIVIDE)) {
  8.             $this->match($isMult Lexer::T_MULTIPLY Lexer::T_DIVIDE);
  9.             $factors[] = $this->lexer->token['value'];
  1.      * @return SimpleArithmeticExpression
  2.      */
  3.     public function SimpleArithmeticExpression()
  4.     {
  5.         $terms   = [];
  6.         $terms[] = $this->ArithmeticTerm();
  7.         while (($isPlus $this->lexer->isNextToken(Lexer::T_PLUS)) || $this->lexer->isNextToken(Lexer::T_MINUS)) {
  8.             $this->match($isPlus Lexer::T_PLUS Lexer::T_MINUS);
  9.             $terms[] = $this->lexer->token['value'];
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -> SimpleArithmeticExpression (line 2806)
  1.                 return $expr;
  2.             }
  3.         }
  4.         $expr->simpleArithmeticExpression $this->SimpleArithmeticExpression();
  5.         return $expr;
  6.     }
  7.     /**
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -> ArithmeticExpression (line 3145)
  1.      */
  2.     public function ComparisonExpression()
  3.     {
  4.         $this->lexer->glimpse();
  5.         $leftExpr  $this->ArithmeticExpression();
  6.         $operator  $this->ComparisonOperator();
  7.         $rightExpr $this->isNextAllAnySome()
  8.             ? $this->QuantifiedExpression()
  9.             : $this->ArithmeticExpression();
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -> ComparisonExpression (line 2666)
  1.         if ($token['type'] === Lexer::T_IS && $lookahead['type'] === Lexer::T_EMPTY) {
  2.             return $this->EmptyCollectionComparisonExpression();
  3.         }
  4.         return $this->ComparisonExpression();
  5.     }
  6.     /**
  7.      * EmptyCollectionComparisonExpression ::= CollectionValuedPathExpression "IS" ["NOT"] "EMPTY"
  8.      *
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -> SimpleConditionalExpression (line 2542)
  1.     public function ConditionalPrimary()
  2.     {
  3.         $condPrimary = new AST\ConditionalPrimary();
  4.         if (! $this->lexer->isNextToken(Lexer::T_OPEN_PARENTHESIS)) {
  5.             $condPrimary->simpleConditionalExpression $this->SimpleConditionalExpression();
  6.             return $condPrimary;
  7.         }
  8.         // Peek beyond the matching closing parenthesis ')'
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -> ConditionalPrimary (line 2518)
  1.             $this->match(Lexer::T_NOT);
  2.             $not true;
  3.         }
  4.         $conditionalPrimary $this->ConditionalPrimary();
  5.         // Phase 1 AST optimization: Prevent AST\ConditionalFactor
  6.         // if only one AST\ConditionalPrimary is defined
  7.         if (! $not) {
  8.             return $conditionalPrimary;
  1.         $conditionalFactors[] = $this->ConditionalFactor();
  2.         while ($this->lexer->isNextToken(Lexer::T_AND)) {
  3.             $this->match(Lexer::T_AND);
  4.             $conditionalFactors[] = $this->ConditionalFactor();
  5.         }
  6.         // Phase 1 AST optimization: Prevent AST\ConditionalTerm
  7.         // if only one AST\ConditionalFactor is defined
  8.         if (count($conditionalFactors) === 1) {
  1.      * @return AST\ConditionalExpression|AST\ConditionalFactor|AST\ConditionalPrimary|AST\ConditionalTerm
  2.      */
  3.     public function ConditionalExpression()
  4.     {
  5.         $conditionalTerms   = [];
  6.         $conditionalTerms[] = $this->ConditionalTerm();
  7.         while ($this->lexer->isNextToken(Lexer::T_OR)) {
  8.             $this->match(Lexer::T_OR);
  9.             $conditionalTerms[] = $this->ConditionalTerm();
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -> ConditionalExpression (line 1421)
  1.      */
  2.     public function WhereClause()
  3.     {
  4.         $this->match(Lexer::T_WHERE);
  5.         return new AST\WhereClause($this->ConditionalExpression());
  6.     }
  7.     /**
  8.      * HavingClause ::= "HAVING" ConditionalExpression
  9.      *
  1.      */
  2.     public function SelectStatement()
  3.     {
  4.         $selectStatement = new AST\SelectStatement($this->SelectClause(), $this->FromClause());
  5.         $selectStatement->whereClause   $this->lexer->isNextToken(Lexer::T_WHERE) ? $this->WhereClause() : null;
  6.         $selectStatement->groupByClause $this->lexer->isNextToken(Lexer::T_GROUP) ? $this->GroupByClause() : null;
  7.         $selectStatement->havingClause  $this->lexer->isNextToken(Lexer::T_HAVING) ? $this->HavingClause() : null;
  8.         $selectStatement->orderByClause $this->lexer->isNextToken(Lexer::T_ORDER) ? $this->OrderByClause() : null;
  9.         return $selectStatement;
  1.         $this->lexer->moveNext();
  2.         switch ($this->lexer->lookahead['type'] ?? null) {
  3.             case Lexer::T_SELECT:
  4.                 $statement $this->SelectStatement();
  5.                 break;
  6.             case Lexer::T_UPDATE:
  7.                 $statement $this->UpdateStatement();
  8.                 break;
  1.      * @return SelectStatement|UpdateStatement|DeleteStatement
  2.      */
  3.     public function getAST()
  4.     {
  5.         // Parse & build AST
  6.         $AST $this->QueryLanguage();
  7.         // Process any deferred validations of some nodes in the AST.
  8.         // This also allows post-processing of the AST for modification purposes.
  9.         $this->processDeferredIdentificationVariables();
  1.      *
  2.      * @return ParserResult
  3.      */
  4.     public function parse()
  5.     {
  6.         $AST $this->getAST();
  7.         $customWalkers $this->query->getHint(Query::HINT_CUSTOM_TREE_WALKERS);
  8.         if ($customWalkers !== false) {
  9.             $this->customTreeWalkers $customWalkers;
  10.         }
  1.         }
  2.         // Cache miss.
  3.         $parser = new Parser($this);
  4.         $this->parserResult $parser->parse();
  5.         $queryCache->save($hash$this->parserResult$this->queryCacheTTL);
  6.         return $this->parserResult;
  7.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     protected function _doExecute()
  5.     {
  6.         $executor $this->parse()->getSqlExecutor();
  7.         if ($this->_queryCacheProfile) {
  8.             $executor->setQueryCacheProfile($this->_queryCacheProfile);
  9.         } else {
  10.             $executor->removeQueryCacheProfile();
  1.                 $cache->save($cacheKey$result$queryCacheProfile->getLifetime());
  2.             };
  3.         }
  4.         $stmt $this->_doExecute();
  5.         if (is_numeric($stmt)) {
  6.             $setCacheEntry($stmt);
  7.             return $stmt;
in vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php -> executeIgnoreQueryCache (line 1027)
  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.      * @return mixed
  3.      */
  4.     public function getResult($hydrationMode self::HYDRATE_OBJECT)
  5.     {
  6.         return $this->execute(null$hydrationMode);
  7.     }
  8.     /**
  9.      * Gets the array of results for the query.
  10.      *
AbstractQuery->getResult() in src/Repository/Media/MediaRepository.php (line 98)
  1.         }
  2.         $qb $this->getPrivacy($qb);
  3.         return $qb->getQuery()
  4.             ->getResult();
  5.         ;
  6.     }
  7.     public function getTagList(int $page 1Tag $tag$limit 42): Paginator
  8.     {
MediaRepository->getAlbumList(object(Album), false) in src/Controller/Media/PortfolioController.php (line 104)
  1.             throw new AccessDeniedHttpException($this->translator->trans('You can\'t view album, because user can\'t create it', [], 'media_album'));
  2.         }
  3.         $owner $this->isGranted('ROLE_ADMIN') || $this->getUser() == $profile->getUser();
  4.         $media $this->getDoctrine()->getRepository(Media::class)->getAlbumList($album$owner);
  5.         return $this->renderTemplate('media/portfolio/album.html.twig', [
  6.             'media' => $media,
  7.             'profile' => $profile,
  8.             'owner' => $owner,
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $requestint $type HttpKernelInterface::MASTER_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 19)
  1.     Debug::enable();
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Doctrine\ORM\Query\ QueryException

SELECT m FROM App\Entity\Media\Media m INNER JOIN m.albums ma INNER JOIN ma.album a WHERE :album = a AND ,.active = 1 AND m.privacy = :all ORDER BY ma.sortOrder DESC

  1.      *
  2.      * @return QueryException
  3.      */
  4.     public static function dqlError($dql)
  5.     {
  6.         return new self($dql);
  7.     }
  8.     /**
  9.      * @param string         $message
  10.      * @param Exception|null $previous
  1.         $message  sprintf('line 0, col %d: Error: '$tokenPos);
  2.         $message .= $expected !== '' sprintf('Expected %s, got '$expected) : 'Unexpected ';
  3.         $message .= $this->lexer->lookahead === null 'end of string.' sprintf("'%s'"$token['value']);
  4.         throw QueryException::syntaxError($messageQueryException::dqlError($this->query->getDQL()));
  5.     }
  6.     /**
  7.      * Generates a new semantical error.
  8.      *
  1.                 );
  2.                 return new AST\Literal(AST\Literal::BOOLEAN$this->lexer->token['value']);
  3.             default:
  4.                 $this->syntaxError('Literal');
  5.         }
  6.     }
  7.     /**
  8.      * InParameter ::= Literal | InputParameter
  1.                 if ($peek !== null && $peek['value'] === '(') {
  2.                     return $this->FunctionDeclaration();
  3.                 }
  4.                 return $this->Literal();
  5.         }
  6.     }
  7.     /**
  8.      * StringExpression ::= StringPrimary | ResultVariable | "(" Subselect ")"
  1.         if ($isPlus || $this->lexer->isNextToken(Lexer::T_MINUS)) {
  2.             $this->match($isPlus Lexer::T_PLUS Lexer::T_MINUS);
  3.             $sign $isPlus;
  4.         }
  5.         $primary $this->ArithmeticPrimary();
  6.         // Phase 1 AST optimization: Prevent AST\ArithmeticFactor
  7.         // if only one AST\ArithmeticPrimary is defined
  8.         if ($sign === null) {
  9.             return $primary;
  1.      * @return ArithmeticTerm
  2.      */
  3.     public function ArithmeticTerm()
  4.     {
  5.         $factors   = [];
  6.         $factors[] = $this->ArithmeticFactor();
  7.         while (($isMult $this->lexer->isNextToken(Lexer::T_MULTIPLY)) || $this->lexer->isNextToken(Lexer::T_DIVIDE)) {
  8.             $this->match($isMult Lexer::T_MULTIPLY Lexer::T_DIVIDE);
  9.             $factors[] = $this->lexer->token['value'];
  1.      * @return SimpleArithmeticExpression
  2.      */
  3.     public function SimpleArithmeticExpression()
  4.     {
  5.         $terms   = [];
  6.         $terms[] = $this->ArithmeticTerm();
  7.         while (($isPlus $this->lexer->isNextToken(Lexer::T_PLUS)) || $this->lexer->isNextToken(Lexer::T_MINUS)) {
  8.             $this->match($isPlus Lexer::T_PLUS Lexer::T_MINUS);
  9.             $terms[] = $this->lexer->token['value'];
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -> SimpleArithmeticExpression (line 2806)
  1.                 return $expr;
  2.             }
  3.         }
  4.         $expr->simpleArithmeticExpression $this->SimpleArithmeticExpression();
  5.         return $expr;
  6.     }
  7.     /**
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -> ArithmeticExpression (line 3145)
  1.      */
  2.     public function ComparisonExpression()
  3.     {
  4.         $this->lexer->glimpse();
  5.         $leftExpr  $this->ArithmeticExpression();
  6.         $operator  $this->ComparisonOperator();
  7.         $rightExpr $this->isNextAllAnySome()
  8.             ? $this->QuantifiedExpression()
  9.             : $this->ArithmeticExpression();
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -> ComparisonExpression (line 2666)
  1.         if ($token['type'] === Lexer::T_IS && $lookahead['type'] === Lexer::T_EMPTY) {
  2.             return $this->EmptyCollectionComparisonExpression();
  3.         }
  4.         return $this->ComparisonExpression();
  5.     }
  6.     /**
  7.      * EmptyCollectionComparisonExpression ::= CollectionValuedPathExpression "IS" ["NOT"] "EMPTY"
  8.      *
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -> SimpleConditionalExpression (line 2542)
  1.     public function ConditionalPrimary()
  2.     {
  3.         $condPrimary = new AST\ConditionalPrimary();
  4.         if (! $this->lexer->isNextToken(Lexer::T_OPEN_PARENTHESIS)) {
  5.             $condPrimary->simpleConditionalExpression $this->SimpleConditionalExpression();
  6.             return $condPrimary;
  7.         }
  8.         // Peek beyond the matching closing parenthesis ')'
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -> ConditionalPrimary (line 2518)
  1.             $this->match(Lexer::T_NOT);
  2.             $not true;
  3.         }
  4.         $conditionalPrimary $this->ConditionalPrimary();
  5.         // Phase 1 AST optimization: Prevent AST\ConditionalFactor
  6.         // if only one AST\ConditionalPrimary is defined
  7.         if (! $not) {
  8.             return $conditionalPrimary;
  1.         $conditionalFactors[] = $this->ConditionalFactor();
  2.         while ($this->lexer->isNextToken(Lexer::T_AND)) {
  3.             $this->match(Lexer::T_AND);
  4.             $conditionalFactors[] = $this->ConditionalFactor();
  5.         }
  6.         // Phase 1 AST optimization: Prevent AST\ConditionalTerm
  7.         // if only one AST\ConditionalFactor is defined
  8.         if (count($conditionalFactors) === 1) {
  1.      * @return AST\ConditionalExpression|AST\ConditionalFactor|AST\ConditionalPrimary|AST\ConditionalTerm
  2.      */
  3.     public function ConditionalExpression()
  4.     {
  5.         $conditionalTerms   = [];
  6.         $conditionalTerms[] = $this->ConditionalTerm();
  7.         while ($this->lexer->isNextToken(Lexer::T_OR)) {
  8.             $this->match(Lexer::T_OR);
  9.             $conditionalTerms[] = $this->ConditionalTerm();
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -> ConditionalExpression (line 1421)
  1.      */
  2.     public function WhereClause()
  3.     {
  4.         $this->match(Lexer::T_WHERE);
  5.         return new AST\WhereClause($this->ConditionalExpression());
  6.     }
  7.     /**
  8.      * HavingClause ::= "HAVING" ConditionalExpression
  9.      *
  1.      */
  2.     public function SelectStatement()
  3.     {
  4.         $selectStatement = new AST\SelectStatement($this->SelectClause(), $this->FromClause());
  5.         $selectStatement->whereClause   $this->lexer->isNextToken(Lexer::T_WHERE) ? $this->WhereClause() : null;
  6.         $selectStatement->groupByClause $this->lexer->isNextToken(Lexer::T_GROUP) ? $this->GroupByClause() : null;
  7.         $selectStatement->havingClause  $this->lexer->isNextToken(Lexer::T_HAVING) ? $this->HavingClause() : null;
  8.         $selectStatement->orderByClause $this->lexer->isNextToken(Lexer::T_ORDER) ? $this->OrderByClause() : null;
  9.         return $selectStatement;
  1.         $this->lexer->moveNext();
  2.         switch ($this->lexer->lookahead['type'] ?? null) {
  3.             case Lexer::T_SELECT:
  4.                 $statement $this->SelectStatement();
  5.                 break;
  6.             case Lexer::T_UPDATE:
  7.                 $statement $this->UpdateStatement();
  8.                 break;
  1.      * @return SelectStatement|UpdateStatement|DeleteStatement
  2.      */
  3.     public function getAST()
  4.     {
  5.         // Parse & build AST
  6.         $AST $this->QueryLanguage();
  7.         // Process any deferred validations of some nodes in the AST.
  8.         // This also allows post-processing of the AST for modification purposes.
  9.         $this->processDeferredIdentificationVariables();
  1.      *
  2.      * @return ParserResult
  3.      */
  4.     public function parse()
  5.     {
  6.         $AST $this->getAST();
  7.         $customWalkers $this->query->getHint(Query::HINT_CUSTOM_TREE_WALKERS);
  8.         if ($customWalkers !== false) {
  9.             $this->customTreeWalkers $customWalkers;
  10.         }
  1.         }
  2.         // Cache miss.
  3.         $parser = new Parser($this);
  4.         $this->parserResult $parser->parse();
  5.         $queryCache->save($hash$this->parserResult$this->queryCacheTTL);
  6.         return $this->parserResult;
  7.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     protected function _doExecute()
  5.     {
  6.         $executor $this->parse()->getSqlExecutor();
  7.         if ($this->_queryCacheProfile) {
  8.             $executor->setQueryCacheProfile($this->_queryCacheProfile);
  9.         } else {
  10.             $executor->removeQueryCacheProfile();
  1.                 $cache->save($cacheKey$result$queryCacheProfile->getLifetime());
  2.             };
  3.         }
  4.         $stmt $this->_doExecute();
  5.         if (is_numeric($stmt)) {
  6.             $setCacheEntry($stmt);
  7.             return $stmt;
in vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php -> executeIgnoreQueryCache (line 1027)
  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.      * @return mixed
  3.      */
  4.     public function getResult($hydrationMode self::HYDRATE_OBJECT)
  5.     {
  6.         return $this->execute(null$hydrationMode);
  7.     }
  8.     /**
  9.      * Gets the array of results for the query.
  10.      *
AbstractQuery->getResult() in src/Repository/Media/MediaRepository.php (line 98)
  1.         }
  2.         $qb $this->getPrivacy($qb);
  3.         return $qb->getQuery()
  4.             ->getResult();
  5.         ;
  6.     }
  7.     public function getTagList(int $page 1Tag $tag$limit 42): Paginator
  8.     {
MediaRepository->getAlbumList(object(Album), false) in src/Controller/Media/PortfolioController.php (line 104)
  1.             throw new AccessDeniedHttpException($this->translator->trans('You can\'t view album, because user can\'t create it', [], 'media_album'));
  2.         }
  3.         $owner $this->isGranted('ROLE_ADMIN') || $this->getUser() == $profile->getUser();
  4.         $media $this->getDoctrine()->getRepository(Media::class)->getAlbumList($album$owner);
  5.         return $this->renderTemplate('media/portfolio/album.html.twig', [
  6.             'media' => $media,
  7.             'profile' => $profile,
  8.             'owner' => $owner,
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $requestint $type HttpKernelInterface::MASTER_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 19)
  1.     Debug::enable();
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 19:29:18 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://dev.pholios.net/_profiler/latest?ip=47.128.18.81",
    "method": "GET"
}
DEBUG 19:29:18 doctrine SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.display_name AS display_name_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.deleted_at AS deleted_at_7, t0.created_by_id AS created_by_id_8, t0.updated_by_id AS updated_by_id_9 FROM setting t0 WHERE t0.name = ? AND ((t0.deleted_at IS NULL)) LIMIT 1
[
    "disclaimer_cookie_toggle"
]
DEBUG 19:29:18 doctrine SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.display_name AS display_name_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.deleted_at AS deleted_at_7, t0.created_by_id AS created_by_id_8, t0.updated_by_id AS updated_by_id_9 FROM setting t0 WHERE t0.name = ? AND ((t0.deleted_at IS NULL)) LIMIT 1
[
    "core_default_language"
]
DEBUG 19:29:18 doctrine SELECT t0.id AS id_1, t0.name AS name_2, t0.iso_code AS iso_code_3 FROM language t0 WHERE t0.id = ?
[
    1
]
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "App\EventListener\ForceRoute\DisclaimerForceRouteListener::onCheckExpired".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\ForceRoute\\DisclaimerForceRouteListener::onCheckExpired"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "App\EventSubscriber\User\UserSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\User\\UserSubscriber::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\BlameListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\BlameListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 19:29:18 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 19:29:18 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 19:29:18 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 19:29:18 doctrine SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.display_name AS display_name_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.deleted_at AS deleted_at_7, t0.created_by_id AS created_by_id_8, t0.updated_by_id AS updated_by_id_9 FROM setting t0 WHERE t0.name = ? AND ((t0.deleted_at IS NULL)) LIMIT 1
[
    "disclaimer_cookie_toggle"
]
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "App\EventListener\ForceRoute\DisclaimerForceRouteListener::onCheckExpired".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\ForceRoute\\DisclaimerForceRouteListener::onCheckExpired"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "App\EventSubscriber\User\UserSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\User\\UserSubscriber::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\BlameListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\BlameListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 19:29:18 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 19:29:18 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 19:29:18 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 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 19:29:18 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 19:29:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 19:29:18 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 19:29:18 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 19:29:18 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 19:29:18 doctrine SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.display_name AS display_name_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.deleted_at AS deleted_at_7, t0.created_by_id AS created_by_id_8, t0.updated_by_id AS updated_by_id_9 FROM setting t0 WHERE t0.name = ? AND ((t0.deleted_at IS NULL)) LIMIT 1
[
    "disclaimer_cookie_toggle"
]
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "App\EventListener\ForceRoute\DisclaimerForceRouteListener::onCheckExpired".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\ForceRoute\\DisclaimerForceRouteListener::onCheckExpired"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "App\EventSubscriber\User\UserSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\User\\UserSubscriber::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\BlameListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\BlameListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 19:29:18 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 19:29:18 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 19:29:18 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 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 19:29:18 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 19:29:18 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 19:29:18 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 19:29:18 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 19:29:18 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 19:29:18 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 19:29:18 doctrine SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.display_name AS display_name_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.deleted_at AS deleted_at_7, t0.created_by_id AS created_by_id_8, t0.updated_by_id AS updated_by_id_9 FROM setting t0 WHERE t0.name = ? AND ((t0.deleted_at IS NULL)) LIMIT 1
[
    "disclaimer_cookie_toggle"
]
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "App\EventListener\ForceRoute\DisclaimerForceRouteListener::onCheckExpired".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\ForceRoute\\DisclaimerForceRouteListener::onCheckExpired"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "App\EventSubscriber\User\UserSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\User\\UserSubscriber::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\BlameListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\BlameListener::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 19:29:18 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 19:29:18 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 19:29:18 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 19:29:18 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 2

[2/2] QueryException

Doctrine\ORM\Query\QueryException:
[Syntax Error] line 0, col 105: Error: Expected Literal, got ','

  at vendor/doctrine/orm/lib/Doctrine/ORM/Query/QueryException.php:52
  at Doctrine\ORM\Query\QueryException::syntaxError('line 0, col 105: Error: Expected Literal, got \',\'', object(QueryException))
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:513)
  at Doctrine\ORM\Query\Parser->syntaxError('Literal')
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2755)
  at Doctrine\ORM\Query\Parser->Literal()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2942)
  at Doctrine\ORM\Query\Parser->ArithmeticPrimary()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2878)
  at Doctrine\ORM\Query\Parser->ArithmeticFactor()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2845)
  at Doctrine\ORM\Query\Parser->ArithmeticTerm()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2819)
  at Doctrine\ORM\Query\Parser->SimpleArithmeticExpression()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2806)
  at Doctrine\ORM\Query\Parser->ArithmeticExpression()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:3145)
  at Doctrine\ORM\Query\Parser->ComparisonExpression()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2666)
  at Doctrine\ORM\Query\Parser->SimpleConditionalExpression()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2542)
  at Doctrine\ORM\Query\Parser->ConditionalPrimary()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2518)
  at Doctrine\ORM\Query\Parser->ConditionalFactor()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2491)
  at Doctrine\ORM\Query\Parser->ConditionalTerm()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2461)
  at Doctrine\ORM\Query\Parser->ConditionalExpression()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:1421)
  at Doctrine\ORM\Query\Parser->WhereClause()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:932)
  at Doctrine\ORM\Query\Parser->SelectStatement()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:899)
  at Doctrine\ORM\Query\Parser->QueryLanguage()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:311)
  at Doctrine\ORM\Query\Parser->getAST()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:411)
  at Doctrine\ORM\Query\Parser->parse()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:274)
  at Doctrine\ORM\Query->parse()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:286)
  at Doctrine\ORM\Query->_doExecute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1073)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, 1)
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1027)
  at Doctrine\ORM\AbstractQuery->execute(null, 1)
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:791)
  at Doctrine\ORM\AbstractQuery->getResult()
     (src/Repository/Media/MediaRepository.php:98)
  at App\Repository\Media\MediaRepository->getAlbumList(object(Album), false)
     (src/Controller/Media/PortfolioController.php:104)
  at App\Controller\Media\PortfolioController->album(object(Request), object(Person), object(Album), object(SettingsManager))
     (vendor/symfony/http-kernel/HttpKernel.php:157)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:79)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:195)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:19)                

[1/2] QueryException

Doctrine\ORM\Query\QueryException:
SELECT m FROM App\Entity\Media\Media m INNER JOIN m.albums ma INNER JOIN ma.album a WHERE :album = a AND ,.active = 1 AND m.privacy = :all ORDER BY ma.sortOrder DESC

  at vendor/doctrine/orm/lib/Doctrine/ORM/Query/QueryException.php:41
  at Doctrine\ORM\Query\QueryException::dqlError('SELECT m FROM App\\Entity\\Media\\Media m INNER JOIN m.albums ma INNER JOIN ma.album a WHERE :album = a AND ,.active = 1 AND m.privacy = :all ORDER BY ma.sortOrder DESC')
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:513)
  at Doctrine\ORM\Query\Parser->syntaxError('Literal')
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2755)
  at Doctrine\ORM\Query\Parser->Literal()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2942)
  at Doctrine\ORM\Query\Parser->ArithmeticPrimary()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2878)
  at Doctrine\ORM\Query\Parser->ArithmeticFactor()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2845)
  at Doctrine\ORM\Query\Parser->ArithmeticTerm()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2819)
  at Doctrine\ORM\Query\Parser->SimpleArithmeticExpression()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2806)
  at Doctrine\ORM\Query\Parser->ArithmeticExpression()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:3145)
  at Doctrine\ORM\Query\Parser->ComparisonExpression()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2666)
  at Doctrine\ORM\Query\Parser->SimpleConditionalExpression()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2542)
  at Doctrine\ORM\Query\Parser->ConditionalPrimary()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2518)
  at Doctrine\ORM\Query\Parser->ConditionalFactor()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2491)
  at Doctrine\ORM\Query\Parser->ConditionalTerm()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:2461)
  at Doctrine\ORM\Query\Parser->ConditionalExpression()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:1421)
  at Doctrine\ORM\Query\Parser->WhereClause()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:932)
  at Doctrine\ORM\Query\Parser->SelectStatement()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:899)
  at Doctrine\ORM\Query\Parser->QueryLanguage()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:311)
  at Doctrine\ORM\Query\Parser->getAST()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:411)
  at Doctrine\ORM\Query\Parser->parse()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:274)
  at Doctrine\ORM\Query->parse()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:286)
  at Doctrine\ORM\Query->_doExecute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1073)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, 1)
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1027)
  at Doctrine\ORM\AbstractQuery->execute(null, 1)
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:791)
  at Doctrine\ORM\AbstractQuery->getResult()
     (src/Repository/Media/MediaRepository.php:98)
  at App\Repository\Media\MediaRepository->getAlbumList(object(Album), false)
     (src/Controller/Media/PortfolioController.php:104)
  at App\Controller\Media\PortfolioController->album(object(Request), object(Person), object(Album), object(SettingsManager))
     (vendor/symfony/http-kernel/HttpKernel.php:157)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:79)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:195)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:19)