Deprecated: Constant E_STRICT is deprecated in /var/www/html/k/kasscaffolding/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /var/www/html/k/kasscaffolding/vendor/symfony/error-handler/ErrorHandler.php on line 76
syntax error, unexpected token ":" (500 Internal Server Error)

Symfony Exception

ParseError

HTTP 500 Internal Server Error

syntax error, unexpected token ":"

Exception

ParseError

  1.  ";
  2.         // line 7
  3.         if (twig_get_attribute($this->env$this->source, (isset($context["page"]) || array_key_exists("page"$context) ? $context["page"] : (function () { throw new RuntimeError('Variable "page" does not exist.'7$this->source); })()), "image", [], "any"falsefalsefalse7)) {
  4.             // line 8
  5.             echo "    <div class=\"banner-image lazyBackgroundImage\" data-mobile=\"";
  6.             echo twig_escape_filter($this->env$this->extensions['App\Twig\TwigExtension']->{closure:App\Twig\TwigExtension::getFunctions():45}(("/userfiles/images/page/" twig_get_attribute($this->env$this->source, (isset($context["page"]) || array_key_exists("page"$context) ? $context["page"] : (function () { throw new RuntimeError('Variable "page" does not exist.'8$this->source); })()), "image", [], "any"falsefalsefalse8)), "zoomCrop"1566822), "html"nulltrue);
  7.             echo "\" data-desktop=\"";
  8.             echo twig_escape_filter($this->env$this->extensions['App\Twig\TwigExtension']->{closure:App\Twig\TwigExtension::getFunctions():45}(("/userfiles/images/page/" twig_get_attribute($this->env$this->source, (isset($context["page"]) || array_key_exists("page"$context) ? $context["page"] : (function () { throw new RuntimeError('Variable "page" does not exist.'8$this->source); })()), "image", [], "any"falsefalsefalse8)), "zoomCrop"32001680), "html"nulltrue);
  9.             echo "\"></div>
  10. ";
  11.         }
  1.         if (!class_exists($clsfalse)) {
  2.             $key $this->cache->generateKey($name$mainCls);
  3.             if (!$this->isAutoReload() || $this->isTemplateFresh($name$this->cache->getTimestamp($key))) {
  4.                 $this->cache->load($key);
  5.             }
  6.             if (!class_exists($clsfalse)) {
  7.                 $source $this->getLoader()->getSourceContext($name);
  8.                 $content $this->compileSource($source);
in vendor/twig/twig/src/Environment.php -> loadTemplate (line 312)
  1.     {
  2.         if ($name instanceof TemplateWrapper) {
  3.             return $name;
  4.         }
  5.         return new TemplateWrapper($this$this->loadTemplate($this->getTemplateClass($name), $name));
  6.     }
  7.     /**
  8.      * Loads a template internal representation.
  9.      *
  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 = []): string
  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('@theme/templates/cmspage-banner.html.twig', array('page' => object(Page), 'slug' => 'cookie-policy', 'pageComponents' => array(), 'pageHtmlBlocks' => array(), 'longUrl' => 'page.php?page=12')) in src/Controller/PageDefaultController.php (line 1036)
  1.             // replace metatitles if exist on components
  2.             foreach ($pageData['pageComponents'] as $pageComp) {
  3.                 $pageMeta $this->generateAndModifyMetaDataTags($pageData['page'], $pageComp['entity']);
  4.             }
  5.             return $this->render('@theme/templates/'.$pageData['page']->getTemplate()->getTemplateFile(), [
  6.                 'page' => $pageMeta,
  7.                 'slug' => $pageData['slug'],
  8.                 'pageComponents' => $pageData['pageComponents'],
  9.                 'pageHtmlBlocks' => $htmlblocks,
  10.                 'longUrl' => strtolower($longUrl),
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 35)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/html/k/kasscaffolding/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs 2

Level Channel Message
INFO 06:59:28 php User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 06:59:28 request Matched route "router".
{
    "route": "router",
    "route_parameters": {
        "_route": "router",
        "_controller": "App\\Controller\\PageDefaultController::router",
        "slug": "cookie-policy"
    },
    "request_uri": "https://kasscaffolding.thetlb.dev/cookie-policy",
    "method": "GET"
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ExceptionListener::__construct(): Implicitly marking parameter $authenticationEntryPoint as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ExceptionListener::__construct(): Implicitly marking parameter $errorPage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ExceptionListener::__construct(): Implicitly marking parameter $accessDeniedHandler as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ExceptionListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\EntryPoint\AuthenticationEntryPointInterface::start(): Implicitly marking parameter $authException as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\EntryPoint\FormAuthenticationEntryPoint::start(): Implicitly marking parameter $authException as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\EntryPoint\FormAuthenticationEntryPoint" class is deprecated, use the new security system with "Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator" instead.
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\LogoutListener::__construct(): Implicitly marking parameter $csrfTokenManager as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\HttpUtils::__construct(): Implicitly marking parameter $urlGenerator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\HttpUtils::__construct(): Implicitly marking parameter $domainRegexp as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\HttpUtils::__construct(): Implicitly marking parameter $secureDomainRegexp as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\AccessMap::add(): Implicitly marking parameter $channel as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ContextListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ContextListener::__construct(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ContextListener::__construct(): Implicitly marking parameter $trustResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ContextListener::__construct(): Implicitly marking parameter $sessionTrackerEnabler as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.form.main" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Authentication\DefaultAuthenticationSuccessHandler::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Authentication\DefaultAuthenticationFailureHandler::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Event\AuthenticationFailureEvent" class is deprecated, use "Symfony\Component\Security\Http\Event\LoginFailureEvent" with the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener::__construct(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener::__construct(): Implicitly marking parameter $csrfTokenManager as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\AbstractAuthenticationListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\AbstractAuthenticationListener::__construct(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AbstractAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Session\SessionAuthenticationStrategy::__construct(): Implicitly marking parameter $csrfTokenStorage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.anonymous.main" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener::__construct(): Implicitly marking parameter $authenticationManager as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated.
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-core 5.4: Using an object that is not an instance of "Symfony\Component\Security\Core\User\UserInterface" as $user in "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" is deprecated.
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.dao.control" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\DaoAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\UserAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface" interface is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Bridge\Doctrine\Security\User\EntityUserProvider::__construct(): Implicitly marking parameter $property as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Bridge\Doctrine\Security\User\EntityUserProvider::__construct(): Implicitly marking parameter $managerName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.anonymous.control" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AnonymousAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:59:28 security Populated the TokenStorage with an anonymous Token.
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\SwitchUserListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Http\Firewall\SwitchUserListener::__construct(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated.
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-http 5.4: Not setting the $exceptionOnNoToken argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" to "false" is deprecated.
{
    "exception": {}
}
DEBUG 06:59:28 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
INFO 06:59:28 php Deprecated: Symfony\Component\Security\Core\Authorization\Voter\ExpressionVoter::__construct(): Implicitly marking parameter $roleHierarchy as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 06:59:28 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 06:59:28 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 06:59:28 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 06:59:28 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 06:59:28 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 06:59:28 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 06:59:28 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 06:59:28 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"
}
INFO 06:59:28 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $message as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $service as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $em as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $entityClass as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $repositoryMethod as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $errorPath as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $ignoreNull as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraint::__construct(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\NotBlank::__construct(): Implicitly marking parameter $options as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\NotBlank::__construct(): Implicitly marking parameter $message as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\NotBlank::__construct(): Implicitly marking parameter $allowNull as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\NotBlank::__construct(): Implicitly marking parameter $normalizer as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\NotBlank::__construct(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $options as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $binaryFormat as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $notFoundMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $notReadableMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $maxSizeMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $mimeTypesMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $disallowEmptyMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $uploadIniSizeErrorMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $uploadFormSizeErrorMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $uploadPartialErrorMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $uploadNoFileErrorMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $uploadNoTmpDirErrorMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $uploadCantWriteErrorMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $uploadExtensionErrorMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $uploadErrorMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\File::__construct(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getUserIdentifier()" might add "string" as a native return type declaration in the future. Do the same in implementation "App\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 06:59:28 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "host": "138.68.186.27",
        "port": 3306,
        "user": "kasscaffolding",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": [],
        "dbname": "kasscaffolding",
        "serverVersion": "8",
        "charset": "utf8mb4"
    }
}
DEBUG 06:59:28 doctrine Executing query: SELECT p0_.id AS id_0, p0_.slug AS slug_1 FROM page p0_
{
    "sql": "SELECT p0_.id AS id_0, p0_.slug AS slug_1 FROM page p0_"
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $min as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $max as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $charset as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $normalizer as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $exactMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $minMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $maxMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $charsetMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Email::__construct(): Implicitly marking parameter $options as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Email::__construct(): Implicitly marking parameter $message as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Email::__construct(): Implicitly marking parameter $mode as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Email::__construct(): Implicitly marking parameter $normalizer as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\Validator\Constraints\Email::__construct(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Statement::__construct(): Implicitly marking parameter $stopwatch as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 06:59:28 doctrine Executing statement: SELECT t0.components AS components_1, t0.extraUrlsegments AS extraUrlsegments_2, t0.htmlblocks AS htmlblocks_3, t0.slug AS slug_4, t0.id AS id_5, t0.navtitle AS navtitle_6, t0.url AS url_7, t0.viewable_from AS viewable_from_8, t0.content2 AS content2_9, t0.kicker AS kicker_10, t0.title AS title_11, t0.content AS content_12, t0.subtitle AS subtitle_13, t0.meta_title AS meta_title_14, t0.meta_description AS meta_description_15, t0.ogImageAlt AS ogImageAlt_16, t0.ogImage AS ogImage_17, t0.active AS active_18, t0.deleted AS deleted_19, t0.image AS image_20, t0.image2 AS image2_21, t0.image3 AS image3_22, t0.file AS file_23, t0.created_at AS created_at_24, t0.updated_at AS updated_at_25, t0.update_by AS update_by_26, t0.parent AS parent_27, t0.template_id AS template_id_28, t0.gallery_id AS gallery_id_29 FROM page t0 WHERE t0.slug = ? AND t0.deleted = ? AND t0.active = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.components AS components_1, t0.extraUrlsegments AS extraUrlsegments_2, t0.htmlblocks AS htmlblocks_3, t0.slug AS slug_4, t0.id AS id_5, t0.navtitle AS navtitle_6, t0.url AS url_7, t0.viewable_from AS viewable_from_8, t0.content2 AS content2_9, t0.kicker AS kicker_10, t0.title AS title_11, t0.content AS content_12, t0.subtitle AS subtitle_13, t0.meta_title AS meta_title_14, t0.meta_description AS meta_description_15, t0.ogImageAlt AS ogImageAlt_16, t0.ogImage AS ogImage_17, t0.active AS active_18, t0.deleted AS deleted_19, t0.image AS image_20, t0.image2 AS image2_21, t0.image3 AS image3_22, t0.file AS file_23, t0.created_at AS created_at_24, t0.updated_at AS updated_at_25, t0.update_by AS update_by_26, t0.parent AS parent_27, t0.template_id AS template_id_28, t0.gallery_id AS gallery_id_29 FROM page t0 WHERE t0.slug = ? AND t0.deleted = ? AND t0.active = ? LIMIT 1",
    "params": {
        "1": "cookie-policy",
        "2": 0,
        "3": 1
    },
    "types": {
        "1": 2,
        "2": 5,
        "3": 5
    }
}
INFO 06:59:28 php Deprecated: Symfony\Component\VarExporter\ProxyHelper::exportSignature(): Implicitly marking parameter $args as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 06:59:28 php Deprecated: Symfony\Component\VarExporter\ProxyHelper::exportType(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 06:59:28 doctrine Executing statement: SELECT t0.id AS id_1, t0.html AS html_2, t0.title AS title_3, t0.content AS content_4, t0.slug AS slug_5, t0.active AS active_6, t0.deleted AS deleted_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9 FROM html_blocks t0 WHERE t0.deleted = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.html AS html_2, t0.title AS title_3, t0.content AS content_4, t0.slug AS slug_5, t0.active AS active_6, t0.deleted AS deleted_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9 FROM html_blocks t0 WHERE t0.deleted = ?",
    "params": {
        "1": 0
    },
    "types": {
        "1": 5
    }
}
DEBUG 06:59:28 doctrine Executing statement: SELECT t0.id AS id_1, t0.description AS description_2, t0.templatefile AS templatefile_3, t0.number_of_html AS number_of_html_4, t0.number_of_components AS number_of_components_5, t0.inherited_bundle_name AS inherited_bundle_name_6, t0.title AS title_7, t0.content AS content_8, t0.active AS active_9, t0.deleted AS deleted_10, t0.image AS image_11 FROM templates t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.description AS description_2, t0.templatefile AS templatefile_3, t0.number_of_html AS number_of_html_4, t0.number_of_components AS number_of_components_5, t0.inherited_bundle_name AS inherited_bundle_name_6, t0.title AS title_7, t0.content AS content_8, t0.active AS active_9, t0.deleted AS deleted_10, t0.image AS image_11 FROM templates t0 WHERE t0.id = ?",
    "params": {
        "1": 4
    },
    "types": {
        "1": 1
    }
}
INFO 06:59:28 php Deprecated: Creation of dynamic property Gregwar\ImageBundle\Services\ImageHandling::$fallbackImage is deprecated
{
    "exception": {}
}
INFO 06:59:28 php User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
CRITICAL 06:59:28 request Uncaught PHP Exception ParseError: "syntax error, unexpected token ":"" at /var/www/html/k/kasscaffolding/var/cache/dev/twig/c4/c44f89175e7d78c86cbe48d060a78c65.php line 115
{
    "exception": {}
}
CRITICAL 06:59:28 php Uncaught Error: syntax error, unexpected token ":"
{
    "exception": {}
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 06:59:28 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 06:59:28 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 06:59:28 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 06:59:28 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 06:59:28 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 06:59:28 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 06:59:28 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 06:59:28 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 06:59:28 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"
}

Stack Trace

ParseError
ParseError:
syntax error, unexpected token ":"

  at var/cache/dev/twig/c4/c44f89175e7d78c86cbe48d060a78c65.php:115
  at Twig\Cache\FilesystemCache->load('/var/www/html/k/kasscaffolding/var/cache/dev/twig/c4/c44f89175e7d78c86cbe48d060a78c65.php')
     (vendor/twig/twig/src/Environment.php:345)
  at Twig\Environment->loadTemplate('__TwigTemplate_df8d588002f3daa0cb25adce846ec452', '@theme/templates/cmspage-banner.html.twig')
     (vendor/twig/twig/src/Environment.php:312)
  at Twig\Environment->load('@theme/templates/cmspage-banner.html.twig')
     (vendor/twig/twig/src/Environment.php:280)
  at Twig\Environment->render('@theme/templates/cmspage-banner.html.twig', array('page' => object(Page), 'slug' => 'cookie-policy', 'pageComponents' => array(), 'pageHtmlBlocks' => array(), 'longUrl' => 'page.php?page=12'))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('@theme/templates/cmspage-banner.html.twig', array('page' => object(Page), 'slug' => 'cookie-policy', 'pageComponents' => array(), 'pageHtmlBlocks' => array(), 'longUrl' => 'page.php?page=12'))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('@theme/templates/cmspage-banner.html.twig', array('page' => object(Page), 'slug' => 'cookie-policy', 'pageComponents' => array(), 'pageHtmlBlocks' => array(), 'longUrl' => 'page.php?page=12'))
     (src/Controller/PageDefaultController.php:1036)
  at App\Controller\PageDefaultController->router(object(SimpleCache), object(Request), 'cookie-policy')
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:35)
  at require_once('/var/www/html/k/kasscaffolding/vendor/autoload_runtime.php')
     (public/index.php:5)                
Loading…
Loading the web debug toolbar…
Attempt #