BurgerClosechevronBagSearchUser
  • Logo
  • servicesStores & services
    Newcastle Metrocentre
    Stores
    Sephora Newcastle Metrocentre
    Unit 19 - 20, 7 The Parade, The Metrocentre, Gateshead, NE11 9YZ
    View All Hours +
    Cycle
    Change your store

    Your favourite store allows you to see services available and book appointments

    In-Store Services
    Make-up and skincare services, Benefit BrowBar, gifting and personalisation workshop, Sephora offers you a whole range of services to come and discover in store Make an appointment
    (Newcastle Metrocentre)
    See all store services
  • Wishlist
  • Cart0

Inspiration

The place to be for tips, tricks, tutorials and product reviews
Key "Show me" for array with keys "all, Best, Inspiration, Reviews, Show Me" does not exist. (500 Internal Server Error)

Symfony Exception

Key "Show me" for array with keys "all, Best, Inspiration, Reviews, Show Me" does not exist.

Exception

Twig\Error\ RuntimeError

  1. </ul>
  2. {% endif %}
  3.     <div class="trending-now-carousel" >
  4.         <ul class="trending-now-carousel navigation-subcategories product-carousel-tabs cms_owl-wrapper" data-karousel="items">
  5.             {% for key, navSubCategory in attribute(categories, category).categories %}
  6.                 <li{{ the_lounge_navigation_class(subcategory, key) }} class="ui-tabs-tab ui-corner-top ui-tab">
  7.                     <a href="{{ the_lounge_navigation_link(siteId, category, key) }}">{{ navSubCategory | capitalize }}</a>
  8.                 </li>
  9.             {% endfor %}
  10.         </ul>
in vendor/twig/twig/src/Template.php->doDisplay (line 453)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php->displayWithErrorHandling (line 420)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php->display (line 432)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Exception $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render($context = [])
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context, \func_num_args() > func_get_arg(1) : []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
in vendor/twig/twig/src/Environment.php->render (line 384)
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.                 $this->twig->display($template->getTemplate(), $parameters);
  2.             };
  3.             $event->setResponse(new StreamedResponse($callback));
  4.         } else {
  5.             $event->setResponse(new Response($this->twig->render($template->getTemplate(), $parameters)));
  6.         }
  7.         // make sure the owner (controller+dependencies) is not cached or stored elsewhere
  8.         $template->setOwner(array());
  9.     }
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.     {
  2.         foreach ($listeners as $listener) {
  3.             if ($event->isPropagationStopped()) {
  4.                 break;
  5.             }
  6.             $listener($event$eventName$this);
  7.         }
  8.     }
  9.     /**
  10.      * Sorts the internal list of listeners for the given event by priority.
  1.      * @param object     $event     The event object to pass to the event handlers/listeners
  2.      */
  3.     protected function callListeners(iterable $listenersstring $eventName$event)
  4.     {
  5.         if ($event instanceof Event) {
  6.             $this->doDispatch($listeners$eventName$event);
  7.             return;
  8.         }
  9.         $stoppable $event instanceof ContractsEvent || $event instanceof StoppableEventInterface;
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.         $response $controller(...$arguments);
  2.         // view
  3.         if (!$response instanceof Response) {
  4.             $event = new ViewEvent($this$request$type$response);
  5.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  6.             if ($event->hasResponse()) {
  7.                 $response $event->getResponse();
  8.             } else {
  9.                 $msg sprintf('The controller must return a "Symfony\Component\HttpFoundation\Response" object but it returned %s.'$this->varToString($response));
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(AppRequest)) in web/v2/app_dev.php (line 66)
  1.     '190.93.240.0/20''188.114.96.0/20''197.234.240.0/22',
  2.     '198.41.128.0/17''162.158.0.0/15''104.16.0.0/12',
  3.     '172.64.0.0/13''131.0.72.0/22',
  4.     ],
  5.     Request::HEADER_X_FORWARDED_ALL);
  6. $response $kernel->handle($request);
  7. $response->send();
  8. $kernel->terminate($request$response);

Logs 1

Level Channel Message
INFO 15:04:53 php User Deprecated: The "Doctrine\Bundle\DoctrineBundle\Registry" class implements "Symfony\Bridge\Doctrine\RegistryInterface" that is deprecated since Symfony 4.4, use Doctrine\Persistence\ManagerRegistry instead.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "FeelUnique\Shared\Infrastructure\Cache\DoctrineMemcachedCache" class extends "Doctrine\Common\Cache\MemcachedCache" that is deprecated Deprecated without replacement in doctrine/cache 1.11. This class will be dropped in 2.0.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The type "termsAndConditionStatus" was implicitly marked as commented due to the configuration. This is deprecated and will be removed in DoctrineBundle 2.0. Either set the "commented" attribute in the configuration to "false" or mark the type as commented in "FeelUnique\Infrastructure\MSSql\Utility\TermsAndConditionStatusType::requiresSQLCommentHint()."
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The type "privacyPolicyStatus" was implicitly marked as commented due to the configuration. This is deprecated and will be removed in DoctrineBundle 2.0. Either set the "commented" attribute in the configuration to "false" or mark the type as commented in "FeelUnique\Infrastructure\MSSql\Utility\PrivacyPolicyStatusType::requiresSQLCommentHint()."
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The type "language" was implicitly marked as commented due to the configuration. This is deprecated and will be removed in DoctrineBundle 2.0. Either set the "commented" attribute in the configuration to "false" or mark the type as commented in "FeelUnique\Infrastructure\MSSql\Utility\LanguageType::requiresSQLCommentHint()."
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The type "text" was implicitly marked as commented due to the configuration. This is deprecated and will be removed in DoctrineBundle 2.0. Either set the "commented" attribute in the configuration to "false" or mark the type as commented in "FeelUnique\Infrastructure\MSSql\Utility\CastTextType::requiresSQLCommentHint()."
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The type "datetime" was implicitly marked as commented due to the configuration. This is deprecated and will be removed in DoctrineBundle 2.0. Either set the "commented" attribute in the configuration to "false" or mark the type as commented in "FeelUnique\Infrastructure\MSSql\Utility\DateTimeType::requiresSQLCommentHint()."
{
    "exception": {}
}
INFO 15:04:53 request Matched route "lounge_all_categories".
{
    "route": "lounge_all_categories",
    "route_parameters": {
        "_route": "lounge_all_categories",
        "category": "show me",
        "subCategory": "all",
        "_controller": "feel_unique.controller.lounge:navCategoryAction",
        "siteId": "79"
    },
    "request_uri": "http://staging.sephora.co.uk/esi/thelounge/79/categories/show%20me/all",
    "method": "GET"
}
DEBUG 15:04:53 event Notified event "feel_unique.detect_site" to listener "FeelUnique\VisitorBundle\EventListener\Site\SiteListener::onKernelRequest".
{
    "event": "feel_unique.detect_site",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Site\\SiteListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\CommonBundle\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\CommonBundle\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\RequestFilteringListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\RequestFilteringListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\CommonBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\CommonBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\RequestListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\B2BInviteListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\B2BInviteListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\CommonBundle\EventListener\RestrictionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\CommonBundle\\EventListener\\RestrictionListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\CommonBundle\EventListener\TrustedProxyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\CommonBundle\\EventListener\\TrustedProxyListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\LocaleNotificationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\LocaleNotificationListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\VoucherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\VoucherListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\AffiliateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\AffiliateListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\CidListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\CidListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\AutoLoginListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\AutoLoginListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\StoreAssignerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\StoreAssignerListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\B2BEnrollListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\B2BEnrollListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\DynamicYieldCookieListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\DynamicYieldCookieListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\NativeAppRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\NativeAppRequestListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Customer\TermsAndConditionsLockoutListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Customer\\TermsAndConditionsLockoutListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\CookieConsentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\CookieConsentListener::onKernelRequest"
}
INFO 15:04:53 php User Deprecated: The "AUTOGENERATE_ALWAYS" and "AUTOGENERATE_NEVER" strategies for proxy generation are deprecated and will be dropped in doctrine/mongodb-odm 2.0. Please use "AUTOGENERATE_FILE_NOT_EXISTS" and "AUTOGENERATE_EVAL".
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Doctrine\ODM\MongoDB\Configuration::setRetryConnect" method is deprecated and will be removed in doctrine/mongodb-odm 2.0.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Doctrine\ODM\MongoDB\Configuration::setRetryQuery" method is deprecated and will be removed in doctrine/mongodb-odm 2.0.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Doctrine\ODM\MongoDB\DocumentRepository" class is deprecated and will be removed in doctrine/mongodb-odm 2.0. Use "Doctrine\ODM\MongoDB\Repository\DocumentRepository" instead.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Doctrine\ODM\MongoDB\Configuration::setLoggerCallable" method is deprecated and will be removed in doctrine/mongodb-odm 2.0.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Doctrine\ODM\MongoDB\Configuration::getRetryConnect" method is deprecated and will be removed in doctrine/mongodb-odm 2.0.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Doctrine\ODM\MongoDB\Configuration::getRetryQuery" method is deprecated and will be removed in doctrine/mongodb-odm 2.0.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Doctrine\ODM\MongoDB\Configuration::getLoggerCallable" method is deprecated and will be removed in doctrine/mongodb-odm 2.0.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The Symfony\Bundle\TwigBundle\Loader\FilesystemLoader class is deprecated since version 4.3 and will be removed in 5.0; use Twig notation for templates instead.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "templating.locator" service is deprecated since Symfony 4.3 and will be removed in 5.0.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The Symfony\Bundle\FrameworkBundle\Templating\Loader\TemplateLocator class is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "templating.name_parser" service is deprecated since Symfony 4.3 and will be removed in 5.0.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The Symfony\Bundle\FrameworkBundle\Templating\TemplateNameParser class is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Doctrine\ODM\MongoDB\Configuration::getRetryQuery" method is deprecated and will be removed in doctrine/mongodb-odm 2.0.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Doctrine\ODM\MongoDB\Configuration::getLoggerCallable" method is deprecated and will be removed in doctrine/mongodb-odm 2.0.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "templating" service is deprecated since Symfony 4.4 and will be removed in 5.0.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The Symfony\Bundle\TwigBundle\TwigEngine class is deprecated since version 4.3 and will be removed in 5.0; use \Twig\Environment instead.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The Symfony\Bridge\Twig\TwigEngine class is deprecated since version 4.3 and will be removed in 5.0; use \Twig\Environment instead.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The Symfony\Bundle\FrameworkBundle\Templating\EngineInterface interface is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.
{
    "exception": {}
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "FeelUnique\BugsnagBundle\EventListener\ShutdownListener::register".
{
    "event": "kernel.controller",
    "listener": "FeelUnique\\BugsnagBundle\\EventListener\\ShutdownListener::register"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
INFO 15:04:53 php User Deprecated: The Symfony\Bundle\FrameworkBundle\Templating\TemplateReference class is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.
{
    "exception": {}
}
DEBUG 15:04:53 event Notified event "kernel.view" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelView".
{
    "event": "kernel.view",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelView"
}
INFO 15:04:53 php User Deprecated: The "twig.exception_listener" service is deprecated since Symfony 4.4.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Symfony\Component\HttpKernel\EventListener\ExceptionListener" class is deprecated since Symfony 4.4, use "ErrorListener" instead.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent::getException()" method is deprecated since Symfony 4.4, use "getThrowable()" instead.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent::getException()" method is deprecated since Symfony 4.4, use "getThrowable()" instead.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent::getException()" method is deprecated since Symfony 4.4, use "getThrowable()" instead.
{
    "exception": {}
}
CRITICAL 15:04:53 request Uncaught PHP Exception Twig\Error\RuntimeError: "Key "Show me" for array with keys "all, Best, Inspiration, Reviews, Show Me" does not exist." at /var/www/deploy/frontend/releases/20250423152118/src/FeelUnique/CommonBundle/Resources/views/Include/listAllLoungeCategories.html.twig line 13
{
    "exception": {
        "xdebug_message": "<tr><th align='left' bgcolor='#f57900' colspan=\"5\"><span style='background-color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> Twig\\Error\\RuntimeError: Key \"Show me\" for array with keys \"all, Best, Inspiration, Reviews, Show Me\" does not exist. in /var/www/deploy/frontend/releases/20250423152118/src/FeelUnique/CommonBundle/Resources/views/Include/listAllLoungeCategories.html.twig on line <i>13</i></th></tr>\n<tr><th align='left' bgcolor='#e9b96e' colspan='5'>Call Stack</th></tr>\n<tr><th align='center' bgcolor='#eeeeec'>#</th><th align='left' bgcolor='#eeeeec'>Time</th><th align='left' bgcolor='#eeeeec'>Memory</th><th align='left' bgcolor='#eeeeec'>Function</th><th align='left' bgcolor='#eeeeec'>Location</th></tr>\n<tr><td bgcolor='#eeeeec' align='center'>1</td><td bgcolor='#eeeeec' align='center'>0.0000</td><td bgcolor='#eeeeec' align='right'>410128</td><td bgcolor='#eeeeec'>{main}(  )</td><td title='/var/www/deploy/frontend/releases/20250423152118/web/v2/app_dev.php' bgcolor='#eeeeec'>.../app_dev.php<b>:</b>0</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>2</td><td bgcolor='#eeeeec' align='center'>0.0045</td><td bgcolor='#eeeeec' align='right'>681520</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\Kernel->handle( <span>$request = </span><span>class FeelUnique\\CommonBundle\\Http\\AppRequest { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $request = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $query = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { protected $parameters = [...] }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { protected $parameters = [...] }; public $cookies = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { protected $headers = [...]; protected $cacheControl = [...] }; protected $content = NULL; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $requestUri = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private $flashName = &#39;flashes&#39;; private $attributeName = &#39;attributes&#39;; private $data = [...]; private $usageIndex = 15 }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en_GB&#39;; private ${Symfony\\Component\\HttpFoundation\\Request}preferredFormat = NULL; private ${Symfony\\Component\\HttpFoundation\\Request}isHostValid = TRUE; private ${Symfony\\Component\\HttpFoundation\\Request}isForwardedValid = TRUE }</span>, <span>$type = </span>???, <span>$catch = </span>??? )</td><td title='/var/www/deploy/frontend/releases/20250423152118/web/v2/app_dev.php' bgcolor='#eeeeec'>.../app_dev.php<b>:</b>66</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>3</td><td bgcolor='#eeeeec' align='center'>0.0396</td><td bgcolor='#eeeeec' align='right'>1923376</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\HttpKernel->handle( <span>$request = </span><span>class FeelUnique\\CommonBundle\\Http\\AppRequest { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $request = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $query = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { protected $parameters = [...] }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { protected $parameters = [...] }; public $cookies = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { protected $headers = [...]; protected $cacheControl = [...] }; protected $content = NULL; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $requestUri = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private $flashName = &#39;flashes&#39;; private $attributeName = &#39;attributes&#39;; private $data = [...]; private $usageIndex = 15 }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en_GB&#39;; private ${Symfony\\Component\\HttpFoundation\\Request}preferredFormat = NULL; private ${Symfony\\Component\\HttpFoundation\\Request}isHostValid = TRUE; private ${Symfony\\Component\\HttpFoundation\\Request}isForwardedValid = TRUE }</span>, <span>$type = </span><span>1</span>, <span>$catch = </span><span>TRUE</span> )</td><td title='/var/www/deploy/frontend/releases/20250423152118/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php' bgcolor='#eeeeec'>.../Kernel.php<b>:</b>201</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>4</td><td bgcolor='#eeeeec' align='center'>0.0396</td><td bgcolor='#eeeeec' align='right'>1924168</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\HttpKernel->handleRaw( <span>$request = </span><span>class FeelUnique\\CommonBundle\\Http\\AppRequest { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $request = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $query = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { protected $parameters = [...] }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { protected $parameters = [...] }; public $cookies = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { protected $headers = [...]; protected $cacheControl = [...] }; protected $content = NULL; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $requestUri = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private $flashName = &#39;flashes&#39;; private $attributeName = &#39;attributes&#39;; private $data = [...]; private $usageIndex = 15 }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en_GB&#39;; private ${Symfony\\Component\\HttpFoundation\\Request}preferredFormat = NULL; private ${Symfony\\Component\\HttpFoundation\\Request}isHostValid = TRUE; private ${Symfony\\Component\\HttpFoundation\\Request}isForwardedValid = TRUE }</span>, <span>$type = </span><span>1</span> )</td><td title='/var/www/deploy/frontend/releases/20250423152118/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php' bgcolor='#eeeeec'>.../HttpKernel.php<b>:</b>81</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>5</td><td bgcolor='#eeeeec' align='center'>0.2687</td><td bgcolor='#eeeeec' align='right'>7049832</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher->dispatch( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\ViewEvent { private ${Symfony\\Component\\HttpKernel\\Event\\GetResponseForControllerResultEvent}controllerResult = [&#39;category&#39; =&gt; &#39;Show me&#39;, &#39;subcategory&#39; =&gt; &#39;all&#39;, &#39;categories&#39; =&gt; [...], &#39;siteId&#39; =&gt; &#39;79&#39;]; private ${Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent}response = NULL; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class FeelUnique\\CommonBundle\\Http\\AppRequest { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = NULL; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $requestUri = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en_GB&#39;; private ${Symfony\\Component\\HttpFoundation\\Request}preferredFormat = NULL; private ${Symfony\\Component\\HttpFoundation\\Request}isHostValid = TRUE; private ${Symfony\\Component\\HttpFoundation\\Request}isForwardedValid = TRUE }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span>, <span>&#39;kernel.view&#39;</span> )</td><td title='/var/www/deploy/frontend/releases/20250423152118/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php' bgcolor='#eeeeec'>.../HttpKernel.php<b>:</b>174</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>6</td><td bgcolor='#eeeeec' align='center'>0.2688</td><td bgcolor='#eeeeec' align='right'>7052264</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\EventDispatcher->dispatch( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\ViewEvent { private ${Symfony\\Component\\HttpKernel\\Event\\GetResponseForControllerResultEvent}controllerResult = [&#39;category&#39; =&gt; &#39;Show me&#39;, &#39;subcategory&#39; =&gt; &#39;all&#39;, &#39;categories&#39; =&gt; [...], &#39;siteId&#39; =&gt; &#39;79&#39;]; private ${Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent}response = NULL; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class FeelUnique\\CommonBundle\\Http\\AppRequest { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = NULL; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $requestUri = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en_GB&#39;; private ${Symfony\\Component\\HttpFoundation\\Request}preferredFormat = NULL; private ${Symfony\\Component\\HttpFoundation\\Request}isHostValid = TRUE; private ${Symfony\\Component\\HttpFoundation\\Request}isForwardedValid = TRUE }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span>, <span>&#39;kernel.view&#39;</span> )</td><td title='/var/www/deploy/frontend/releases/20250423152118/vendor/symfony/symfony/src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php' bgcolor='#eeeeec'>.../TraceableEventDispatcher.php<b>:</b>168</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>7</td><td bgcolor='#eeeeec' align='center'>0.2688</td><td bgcolor='#eeeeec' align='right'>7052736</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\EventDispatcher->callListeners( <span>$listeners = </span><span>[0 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private $listener = [...]; private $optimizedListener = class Closure { virtual $closure = &quot;$this-&gt;onKernelView&quot;, ... }; private $name = &#39;Sensio\\\\Bundle\\\\FrameworkExtraBundle\\\\EventListener\\\\TemplateListener&#39;; private $called = TRUE; private $stoppedPropagation = FALSE; private $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private $pretty = &#39;Sensio\\\\Bundle\\\\FrameworkExtraBundle\\\\EventListener\\\\TemplateListener::onKernelView&#39;; private $stub = NULL; private $priority = 0 }]</span>, <span>$eventName = </span><span>&#39;kernel.view&#39;</span>, <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\ViewEvent { private ${Symfony\\Component\\HttpKernel\\Event\\GetResponseForControllerResultEvent}controllerResult = [&#39;category&#39; =&gt; &#39;Show me&#39;, &#39;subcategory&#39; =&gt; &#39;all&#39;, &#39;categories&#39; =&gt; [...], &#39;siteId&#39; =&gt; &#39;79&#39;]; private ${Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent}response = NULL; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class FeelUnique\\CommonBundle\\Http\\AppRequest { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = NULL; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $requestUri = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en_GB&#39;; private ${Symfony\\Component\\HttpFoundation\\Request}preferredFormat = NULL; private ${Symfony\\Component\\HttpFoundation\\Request}isHostValid = TRUE; private ${Symfony\\Component\\HttpFoundation\\Request}isForwardedValid = TRUE }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span> )</td><td title='/var/www/deploy/frontend/releases/20250423152118/vendor/symfony/symfony/src/Symfony/Component/EventDispatcher/EventDispatcher.php' bgcolor='#eeeeec'>.../EventDispatcher.php<b>:</b>73</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>8</td><td bgcolor='#eeeeec' align='center'>0.2688</td><td bgcolor='#eeeeec' align='right'>7052736</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\EventDispatcher->doDispatch( <span>$listeners = </span><span>[0 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private $listener = [...]; private $optimizedListener = class Closure { virtual $closure = &quot;$this-&gt;onKernelView&quot;, ... }; private $name = &#39;Sensio\\\\Bundle\\\\FrameworkExtraBundle\\\\EventListener\\\\TemplateListener&#39;; private $called = TRUE; private $stoppedPropagation = FALSE; private $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private $pretty = &#39;Sensio\\\\Bundle\\\\FrameworkExtraBundle\\\\EventListener\\\\TemplateListener::onKernelView&#39;; private $stub = NULL; private $priority = 0 }]</span>, <span>$eventName = </span><span>&#39;kernel.view&#39;</span>, <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\ViewEvent { private ${Symfony\\Component\\HttpKernel\\Event\\GetResponseForControllerResultEvent}controllerResult = [&#39;category&#39; =&gt; &#39;Show me&#39;, &#39;subcategory&#39; =&gt; &#39;all&#39;, &#39;categories&#39; =&gt; [...], &#39;siteId&#39; =&gt; &#39;79&#39;]; private ${Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent}response = NULL; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class FeelUnique\\CommonBundle\\Http\\AppRequest { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = NULL; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $requestUri = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en_GB&#39;; private ${Symfony\\Component\\HttpFoundation\\Request}preferredFormat = NULL; private ${Symfony\\Component\\HttpFoundation\\Request}isHostValid = TRUE; private ${Symfony\\Component\\HttpFoundation\\Request}isForwardedValid = TRUE }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span> )</td><td title='/var/www/deploy/frontend/releases/20250423152118/vendor/symfony/symfony/src/Symfony/Component/EventDispatcher/EventDispatcher.php' bgcolor='#eeeeec'>.../EventDispatcher.php<b>:</b>239</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>9</td><td bgcolor='#eeeeec' align='center'>0.2688</td><td bgcolor='#eeeeec' align='right'>7052736</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener->__invoke( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\ViewEvent { private ${Symfony\\Component\\HttpKernel\\Event\\GetResponseForControllerResultEvent}controllerResult = [&#39;category&#39; =&gt; &#39;Show me&#39;, &#39;subcategory&#39; =&gt; &#39;all&#39;, &#39;categories&#39; =&gt; [...], &#39;siteId&#39; =&gt; &#39;79&#39;]; private ${Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent}response = NULL; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class FeelUnique\\CommonBundle\\Http\\AppRequest { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = NULL; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $requestUri = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en_GB&#39;; private ${Symfony\\Component\\HttpFoundation\\Request}preferredFormat = NULL; private ${Symfony\\Component\\HttpFoundation\\Request}isHostValid = TRUE; private ${Symfony\\Component\\HttpFoundation\\Request}isForwardedValid = TRUE }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span>, <span>$eventName = </span><span>&#39;kernel.view&#39;</span>, <span>$dispatcher = </span><span>class Symfony\\Component\\EventDispatcher\\EventDispatcher { private $listeners = [&#39;kernel.controller&#39; =&gt; [...], &#39;kernel.request&#39; =&gt; [...], &#39;kernel.exception&#39; =&gt; [...], &#39;legacy.call&#39; =&gt; [...], &#39;kernel.response&#39; =&gt; [...], &#39;fredhopper.request&#39; =&gt; [...], &#39;fredhopper.response.post_hydrate&#39; =&gt; [...], &#39;feel_unique.load_cart&#39; =&gt; [...], &#39;feel_unique.cart.updated&#39; =&gt; [...], &#39;feel_unique.cart.update.quantity&#39; =&gt; [...], &#39;feel_unique.detect_currency&#39; =&gt; [...], &#39;feel_unique.detect_site&#39; =&gt; [...], &#39;feel_unique.detect_country&#39; =&gt; [...], &#39;feel_unique.enrich_customer&#39; =&gt; [...], &#39;feel_unique.successful_login&#39; =&gt; [...], &#39;feel_unique.successful_autologin&#39; =&gt; [...], &#39;feel_unique.enrich_visitor&#39; =&gt; [...], &#39;feel_unique.customer_registration&#39; =&gt; [...], &#39;kernel.terminate&#39; =&gt; [...], &#39;product.update&#39; =&gt; [...], &#39;order.placed&#39; =&gt; [...], &#39;kernel.finish_request&#39; =&gt; [...], &#39;console.error&#39; =&gt; [...], &#39;console.terminate&#39; =&gt; [...], &#39;console.command&#39; =&gt; [...], &#39;debug.security.authorization.vote&#39; =&gt; [...], &#39;Symfony\\Component\\Mailer\\Event\\MessageEvent&#39; =&gt; [...], &#39;Symfony\\Component\\Messenger\\Event\\WorkerMessageHandledEvent&#39; =&gt; [...], &#39;Symfony\\Component\\Messenger\\Event\\WorkerMessageFailedEvent&#39; =&gt; [...], &#39;kernel.view&#39; =&gt; [...], &#39;knp_pager.before&#39; =&gt; [...], &#39;knp_pager.pagination&#39; =&gt; [...], &#39;knp_pager.items&#39; =&gt; [...]]; private $sorted = []; private $optimized = [&#39;kernel.view&#39; =&gt; [...]] }</span> )</td><td title='/var/www/deploy/frontend/releases/20250423152118/vendor/symfony/symfony/src/Symfony/Component/EventDispatcher/EventDispatcher.php' bgcolor='#eeeeec'>.../EventDispatcher.php<b>:</b>264</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>10</td><td bgcolor='#eeeeec' align='center'>0.2688</td><td bgcolor='#eeeeec' align='right'>7052736</td><td bgcolor='#eeeeec'>Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener->onKernelView( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\ViewEvent { private ${Symfony\\Component\\HttpKernel\\Event\\GetResponseForControllerResultEvent}controllerResult = [&#39;category&#39; =&gt; &#39;Show me&#39;, &#39;subcategory&#39; =&gt; &#39;all&#39;, &#39;categories&#39; =&gt; [...], &#39;siteId&#39; =&gt; &#39;79&#39;]; private ${Symfony\\Component\\HttpKernel\\Event\\GetResponseEvent}response = NULL; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class FeelUnique\\CommonBundle\\Http\\AppRequest { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = NULL; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $requestUri = &#39;/esi/thelounge/79/categories/show%20me/all&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = NULL; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en_GB&#39;; private ${Symfony\\Component\\HttpFoundation\\Request}preferredFormat = NULL; private ${Symfony\\Component\\HttpFoundation\\Request}isHostValid = TRUE; private ${Symfony\\Component\\HttpFoundation\\Request}isForwardedValid = TRUE }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span>, <span>&#39;kernel.view&#39;</span>, <span>class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { protected $logger = class Symfony\\Bridge\\Monolog\\Logger { protected $name = &#39;event&#39;; protected $handlers = [...]; protected $processors = [...]; protected $microsecondTimestamps = TRUE; protected $exceptionHandler = NULL }; protected $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { private $morePrecision = TRUE; private $sections = [...]; private $activeSections = [...] }; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}callStack = class SplObjectStorage {  }; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}dispatcher = class Symfony\\Component\\EventDispatcher\\EventDispatcher { private $listeners = [...]; private $sorted = [...]; private $optimized = [...] }; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}wrappedListeners = [&#39;kernel.view&#39; =&gt; [...]]; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}orphanedEvents = [&#39;0000000063b671e20000000001d5eca2&#39; =&gt; [...]]; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { private $requests = [...] }; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}currentRequestHash = &#39;0000000063b671e20000000001d5eca2&#39; }</span> )</td><td title='/var/www/deploy/frontend/releases/20250423152118/vendor/symfony/symfony/src/Symfony/Component/EventDispatcher/Debug/WrappedListener.php' bgcolor='#eeeeec'>.../WrappedListener.php<b>:</b>126</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>11</td><td bgcolor='#eeeeec' align='center'>0.2688</td><td bgcolor='#eeeeec' align='right'>7052896</td><td bgcolor='#eeeeec'>Twig\\Environment->render( <span>$name = </span><span>&#39;FeelUniqueCommonBundle:Include:listAllLoungeCategories.html.twig&#39;</span>, <span>$context = </span><span>[&#39;category&#39; =&gt; &#39;Show me&#39;, &#39;subcategory&#39; =&gt; &#39;all&#39;, &#39;categories&#39; =&gt; [&#39;all&#39; =&gt; [...], &#39;Best&#39; =&gt; [...], &#39;Inspiration&#39; =&gt; [...], &#39;Reviews&#39; =&gt; [...], &#39;Show Me&#39; =&gt; [...]], &#39;siteId&#39; =&gt; &#39;79&#39;]</span> )</td><td title='/var/www/deploy/frontend/releases/20250423152118/vendor/sensio/framework-extra-bundle/EventListener/TemplateListener.php' bgcolor='#eeeeec'>.../TemplateListener.php<b>:</b>103</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>12</td><td bgcolor='#eeeeec' align='center'>0.3041</td><td bgcolor='#eeeeec' align='right'>7912880</td><td bgcolor='#eeeeec'>Twig\\TemplateWrapper->render( <span>$context = </span><span>[&#39;category&#39; =&gt; &#39;Show me&#39;, &#39;subcategory&#39; =&gt; &#39;all&#39;, &#39;categories&#39; =&gt; [&#39;all&#39; =&gt; [...], &#39;Best&#39; =&gt; [...], &#39;Inspiration&#39; =&gt; [...], &#39;Reviews&#39; =&gt; [...], &#39;Show Me&#39; =&gt; [...]], &#39;siteId&#39; =&gt; &#39;79&#39;]</span> )</td><td title='/var/www/deploy/frontend/releases/20250423152118/vendor/twig/twig/src/Environment.php' bgcolor='#eeeeec'>.../Environment.php<b>:</b>384</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>13</td><td bgcolor='#eeeeec' align='center'>0.3041</td><td bgcolor='#eeeeec' align='right'>7912880</td><td bgcolor='#eeeeec'>Twig\\Template->render( <span>$context = </span><span>[&#39;category&#39; =&gt; &#39;Show me&#39;, &#39;subcategory&#39; =&gt; &#39;all&#39;, &#39;categories&#39; =&gt; [&#39;all&#39; =&gt; [...], &#39;Best&#39; =&gt; [...], &#39;Inspiration&#39; =&gt; [...], &#39;Reviews&#39; =&gt; [...], &#39;Show Me&#39; =&gt; [...]], &#39;siteId&#39; =&gt; &#39;79&#39;]</span>, <span>[]</span> )</td><td title='/var/www/deploy/frontend/releases/20250423152118/vendor/twig/twig/src/TemplateWrapper.php' bgcolor='#eeeeec'>.../TemplateWrapper.php<b>:</b>47</td></tr>\n"
    }
}
INFO 15:04:53 php User Deprecated: The "Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent::getException()" method is deprecated since Symfony 4.4, use "getThrowable()" instead.
{
    "exception": {}
}
DEBUG 15:04:53 event Notified event "feel_unique.detect_site" to listener "FeelUnique\VisitorBundle\EventListener\Site\SiteListener::onKernelRequest".
{
    "event": "feel_unique.detect_site",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Site\\SiteListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\CommonBundle\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\CommonBundle\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\RequestFilteringListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\RequestFilteringListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\CommonBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\CommonBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\RequestListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\B2BInviteListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\B2BInviteListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\CommonBundle\EventListener\RestrictionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\CommonBundle\\EventListener\\RestrictionListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\CommonBundle\EventListener\TrustedProxyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\CommonBundle\\EventListener\\TrustedProxyListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\LocaleNotificationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\LocaleNotificationListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\VoucherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\VoucherListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\AffiliateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\AffiliateListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\CidListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\CidListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\AutoLoginListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\AutoLoginListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\StoreAssignerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\StoreAssignerListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\B2BEnrollListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\B2BEnrollListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\DynamicYieldCookieListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\DynamicYieldCookieListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\NativeAppRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\NativeAppRequestListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Customer\TermsAndConditionsLockoutListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Customer\\TermsAndConditionsLockoutListener::onKernelRequest"
}
DEBUG 15:04:53 event Notified event "kernel.request" to listener "FeelUnique\VisitorBundle\EventListener\Request\CookieConsentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FeelUnique\\VisitorBundle\\EventListener\\Request\\CookieConsentListener::onKernelRequest"
}
INFO 15:04:53 php User Deprecated: The "twig.controller.exception" service is deprecated since Symfony 4.4.
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The "Symfony\Bundle\TwigBundle\Controller\ExceptionController" class is deprecated since Symfony 4.4, use "Symfony\Component\HttpKernel\Controller\ErrorController" instead.
{
    "exception": {}
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "FeelUnique\BugsnagBundle\EventListener\ShutdownListener::register".
{
    "event": "kernel.controller",
    "listener": "FeelUnique\\BugsnagBundle\\EventListener\\ShutdownListener::register"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelController"
}
DEBUG 15:04:53 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
INFO 15:04:53 php User Deprecated: The template "@Twig/layout.html.twig" is deprecated since Symfony 4.4, will be removed in 5.0. ("@Twig/layout.html.twig" at line 1).
{
    "exception": {}
}
INFO 15:04:53 php User Deprecated: The template "@Twig/exception.css.twig" is deprecated since Symfony 4.4, will be removed in 5.0. ("@Twig/exception.css.twig" at line 1).
{
    "exception": {}
}

Stack Trace

RuntimeError

Twig\Error\RuntimeError:
Key "Show me" for array with keys "all, Best, Inspiration, Reviews, Show Me" does not exist.

  at src/FeelUnique/CommonBundle/Resources/views/Include/listAllLoungeCategories.html.twig:13
  at Twig\Template->getAttribute(array('all' => array('name' => 'all', 'displayName' => 'all', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'Life' => 'Life', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'NAILS' => 'NAILS')), 'Best' => array('name' => 'Best', 'displayName' => 'Best', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'WELLBEING' => 'WELLBEING', 'Gifts' => 'Gifts', 'NAILS' => 'NAILS')), 'Inspiration' => array('name' => 'Inspiration', 'displayName' => 'Inspiration', 'categories' => array('all' => 'all', 'HAIR' => 'HAIR', 'SKIN' => 'SKIN', 'Life' => 'Life', 'MAKEUP' => 'MAKEUP', 'FRAGRANCE' => 'FRAGRANCE', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'NAILS' => 'NAILS')), 'Reviews' => array('name' => 'Reviews', 'displayName' => 'Reviews', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'NAILS' => 'NAILS', 'Gifts' => 'Gifts', 'SUN &amp; TANNING' => 'SUN &amp; TANNING')), 'Show Me' => array('name' => 'Show Me', 'displayName' => 'Show Me', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'NAILS' => 'NAILS'))), 'Show me')
     (vendor/twig/twig/src/Environment.php(497) : eval()'d code:71)
  at __TwigTemplate_ee7c88c0a00df9695536e128a8fc27ebcf6e2e2b7470c4a82bc47bd73235c9d9->doDisplay(array('category' => 'Show me', 'subcategory' => 'all', 'categories' => array('all' => array('name' => 'all', 'displayName' => 'all', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'Life' => 'Life', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'NAILS' => 'NAILS')), 'Best' => array('name' => 'Best', 'displayName' => 'Best', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'WELLBEING' => 'WELLBEING', 'Gifts' => 'Gifts', 'NAILS' => 'NAILS')), 'Inspiration' => array('name' => 'Inspiration', 'displayName' => 'Inspiration', 'categories' => array('all' => 'all', 'HAIR' => 'HAIR', 'SKIN' => 'SKIN', 'Life' => 'Life', 'MAKEUP' => 'MAKEUP', 'FRAGRANCE' => 'FRAGRANCE', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'NAILS' => 'NAILS')), 'Reviews' => array('name' => 'Reviews', 'displayName' => 'Reviews', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'NAILS' => 'NAILS', 'Gifts' => 'Gifts', 'SUN &amp; TANNING' => 'SUN &amp; TANNING')), 'Show Me' => array('name' => 'Show Me', 'displayName' => 'Show Me', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'NAILS' => 'NAILS'))), 'siteId' => '79', 'messages' => object(MessageBag), 'gb_countries' => array('GB', 'JE', 'GG', 'IM'), 'delivery_info_countries' => array('GB', 'JE', 'GG', 'IM', 'IE'), 'domain' => 'staging.sephora.co.uk', 'site_name' => 'Sephora', 'site_name_lc' => 'sephora', 'my_account_name' => 'My Account', 'site_name_seo' => 'SEPHORA UK', 'wishlistCount' => 0, 'orderCount' => 0, 'addressBookCount' => 0, 'favouriteCount' => 0, 'offerCount' => 0, 'productPurchaseCount' => 0, 'subscriptionCount' => 0, 'app' => object(AppVariable), 'server_http_base_authentication' => 'admin:D3v3l0p!!@', 'tagmanager' => array('enabled' => false), 'asset_version' => 202504241108, 'cookieConsentService' => object(CookieConsentService), 'cdn_url' => '//cdn1.feelunique.com', 'assets_url' => 'https://staging.feelunique.com', 'citrus_endpoint' => 'https://eu-integration.citrusad.com/v1/resource', 'department_urls' => '(natural-beauty|travel|hair|gifts|makeup|body|mens|fragrances|skin|hautpflege|duft|bad-korper|make-up|geschenke|haare|reise|naturkosmetik|soin-du-visage|parfums|corps-bain|maquillage|cadeaux|soin-cheveux|voyage|naturel-bio)', '_parent' => array('category' => 'Show me', 'subcategory' => 'all', 'categories' => array('all' => array('name' => 'all', 'displayName' => 'all', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'Life' => 'Life', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'NAILS' => 'NAILS')), 'Best' => array('name' => 'Best', 'displayName' => 'Best', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'WELLBEING' => 'WELLBEING', 'Gifts' => 'Gifts', 'NAILS' => 'NAILS')), 'Inspiration' => array('name' => 'Inspiration', 'displayName' => 'Inspiration', 'categories' => array('all' => 'all', 'HAIR' => 'HAIR', 'SKIN' => 'SKIN', 'Life' => 'Life', 'MAKEUP' => 'MAKEUP', 'FRAGRANCE' => 'FRAGRANCE', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'NAILS' => 'NAILS')), 'Reviews' => array('name' => 'Reviews', 'displayName' => 'Reviews', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'NAILS' => 'NAILS', 'Gifts' => 'Gifts', 'SUN &amp; TANNING' => 'SUN &amp; TANNING')), 'Show Me' => array('name' => 'Show Me', 'displayName' => 'Show Me', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'NAILS' => 'NAILS'))), 'siteId' => '79', 'messages' => object(MessageBag), 'gb_countries' => array('GB', 'JE', 'GG', 'IM'), 'delivery_info_countries' => array('GB', 'JE', 'GG', 'IM', 'IE'), 'domain' => 'staging.sephora.co.uk', 'site_name' => 'Sephora', 'site_name_lc' => 'sephora', 'my_account_name' => 'My Account', 'site_name_seo' => 'SEPHORA UK', 'wishlistCount' => 0, 'orderCount' => 0, 'addressBookCount' => 0, 'favouriteCount' => 0, 'offerCount' => 0, 'productPurchaseCount' => 0, 'subscriptionCount' => 0, 'app' => object(AppVariable), 'server_http_base_authentication' => 'admin:D3v3l0p!!@', 'tagmanager' => array('enabled' => false), 'asset_version' => 202504241108, 'cookieConsentService' => object(CookieConsentService), 'cdn_url' => '//cdn1.feelunique.com', 'assets_url' => 'https://staging.feelunique.com', 'citrus_endpoint' => 'https://eu-integration.citrusad.com/v1/resource', 'department_urls' => '(natural-beauty|travel|hair|gifts|makeup|body|mens|fragrances|skin|hautpflege|duft|bad-korper|make-up|geschenke|haare|reise|naturkosmetik|soin-du-visage|parfums|corps-bain|maquillage|cadeaux|soin-cheveux|voyage|naturel-bio)')), array())
     (vendor/twig/twig/src/Template.php:453)
  at Twig\Template->displayWithErrorHandling(array('category' => 'Show me', 'subcategory' => 'all', 'categories' => array('all' => array('name' => 'all', 'displayName' => 'all', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'Life' => 'Life', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'NAILS' => 'NAILS')), 'Best' => array('name' => 'Best', 'displayName' => 'Best', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'WELLBEING' => 'WELLBEING', 'Gifts' => 'Gifts', 'NAILS' => 'NAILS')), 'Inspiration' => array('name' => 'Inspiration', 'displayName' => 'Inspiration', 'categories' => array('all' => 'all', 'HAIR' => 'HAIR', 'SKIN' => 'SKIN', 'Life' => 'Life', 'MAKEUP' => 'MAKEUP', 'FRAGRANCE' => 'FRAGRANCE', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'NAILS' => 'NAILS')), 'Reviews' => array('name' => 'Reviews', 'displayName' => 'Reviews', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'NAILS' => 'NAILS', 'Gifts' => 'Gifts', 'SUN &amp; TANNING' => 'SUN &amp; TANNING')), 'Show Me' => array('name' => 'Show Me', 'displayName' => 'Show Me', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'NAILS' => 'NAILS'))), 'siteId' => '79', 'messages' => object(MessageBag), 'gb_countries' => array('GB', 'JE', 'GG', 'IM'), 'delivery_info_countries' => array('GB', 'JE', 'GG', 'IM', 'IE'), 'domain' => 'staging.sephora.co.uk', 'site_name' => 'Sephora', 'site_name_lc' => 'sephora', 'my_account_name' => 'My Account', 'site_name_seo' => 'SEPHORA UK', 'wishlistCount' => 0, 'orderCount' => 0, 'addressBookCount' => 0, 'favouriteCount' => 0, 'offerCount' => 0, 'productPurchaseCount' => 0, 'subscriptionCount' => 0, 'app' => object(AppVariable), 'server_http_base_authentication' => 'admin:D3v3l0p!!@', 'tagmanager' => array('enabled' => false), 'asset_version' => 202504241108, 'cookieConsentService' => object(CookieConsentService), 'cdn_url' => '//cdn1.feelunique.com', 'assets_url' => 'https://staging.feelunique.com', 'citrus_endpoint' => 'https://eu-integration.citrusad.com/v1/resource', 'department_urls' => '(natural-beauty|travel|hair|gifts|makeup|body|mens|fragrances|skin|hautpflege|duft|bad-korper|make-up|geschenke|haare|reise|naturkosmetik|soin-du-visage|parfums|corps-bain|maquillage|cadeaux|soin-cheveux|voyage|naturel-bio)'), array())
     (vendor/twig/twig/src/Template.php:420)
  at Twig\Template->display(array('category' => 'Show me', 'subcategory' => 'all', 'categories' => array('all' => array('name' => 'all', 'displayName' => 'all', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'Life' => 'Life', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'NAILS' => 'NAILS')), 'Best' => array('name' => 'Best', 'displayName' => 'Best', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'WELLBEING' => 'WELLBEING', 'Gifts' => 'Gifts', 'NAILS' => 'NAILS')), 'Inspiration' => array('name' => 'Inspiration', 'displayName' => 'Inspiration', 'categories' => array('all' => 'all', 'HAIR' => 'HAIR', 'SKIN' => 'SKIN', 'Life' => 'Life', 'MAKEUP' => 'MAKEUP', 'FRAGRANCE' => 'FRAGRANCE', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'NAILS' => 'NAILS')), 'Reviews' => array('name' => 'Reviews', 'displayName' => 'Reviews', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'NAILS' => 'NAILS', 'Gifts' => 'Gifts', 'SUN &amp; TANNING' => 'SUN &amp; TANNING')), 'Show Me' => array('name' => 'Show Me', 'displayName' => 'Show Me', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'NAILS' => 'NAILS'))), 'siteId' => '79'))
     (vendor/twig/twig/src/Template.php:432)
  at Twig\Template->render(array('category' => 'Show me', 'subcategory' => 'all', 'categories' => array('all' => array('name' => 'all', 'displayName' => 'all', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'Life' => 'Life', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'NAILS' => 'NAILS')), 'Best' => array('name' => 'Best', 'displayName' => 'Best', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'WELLBEING' => 'WELLBEING', 'Gifts' => 'Gifts', 'NAILS' => 'NAILS')), 'Inspiration' => array('name' => 'Inspiration', 'displayName' => 'Inspiration', 'categories' => array('all' => 'all', 'HAIR' => 'HAIR', 'SKIN' => 'SKIN', 'Life' => 'Life', 'MAKEUP' => 'MAKEUP', 'FRAGRANCE' => 'FRAGRANCE', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'NAILS' => 'NAILS')), 'Reviews' => array('name' => 'Reviews', 'displayName' => 'Reviews', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'NAILS' => 'NAILS', 'Gifts' => 'Gifts', 'SUN &amp; TANNING' => 'SUN &amp; TANNING')), 'Show Me' => array('name' => 'Show Me', 'displayName' => 'Show Me', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'NAILS' => 'NAILS'))), 'siteId' => '79'), array())
     (vendor/twig/twig/src/TemplateWrapper.php:47)
  at Twig\TemplateWrapper->render(array('category' => 'Show me', 'subcategory' => 'all', 'categories' => array('all' => array('name' => 'all', 'displayName' => 'all', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'Life' => 'Life', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'NAILS' => 'NAILS')), 'Best' => array('name' => 'Best', 'displayName' => 'Best', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'WELLBEING' => 'WELLBEING', 'Gifts' => 'Gifts', 'NAILS' => 'NAILS')), 'Inspiration' => array('name' => 'Inspiration', 'displayName' => 'Inspiration', 'categories' => array('all' => 'all', 'HAIR' => 'HAIR', 'SKIN' => 'SKIN', 'Life' => 'Life', 'MAKEUP' => 'MAKEUP', 'FRAGRANCE' => 'FRAGRANCE', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'NAILS' => 'NAILS')), 'Reviews' => array('name' => 'Reviews', 'displayName' => 'Reviews', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'NAILS' => 'NAILS', 'Gifts' => 'Gifts', 'SUN &amp; TANNING' => 'SUN &amp; TANNING')), 'Show Me' => array('name' => 'Show Me', 'displayName' => 'Show Me', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'NAILS' => 'NAILS'))), 'siteId' => '79'))
     (vendor/twig/twig/src/Environment.php:384)
  at Twig\Environment->render('FeelUniqueCommonBundle:Include:listAllLoungeCategories.html.twig', array('category' => 'Show me', 'subcategory' => 'all', 'categories' => array('all' => array('name' => 'all', 'displayName' => 'all', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'Life' => 'Life', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'NAILS' => 'NAILS')), 'Best' => array('name' => 'Best', 'displayName' => 'Best', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'MAKEUP' => 'MAKEUP', 'WELLBEING' => 'WELLBEING', 'Gifts' => 'Gifts', 'NAILS' => 'NAILS')), 'Inspiration' => array('name' => 'Inspiration', 'displayName' => 'Inspiration', 'categories' => array('all' => 'all', 'HAIR' => 'HAIR', 'SKIN' => 'SKIN', 'Life' => 'Life', 'MAKEUP' => 'MAKEUP', 'FRAGRANCE' => 'FRAGRANCE', 'Gifts' => 'Gifts', 'WELLBEING' => 'WELLBEING', 'SUN &amp; TANNING' => 'SUN &amp; TANNING', 'NAILS' => 'NAILS')), 'Reviews' => array('name' => 'Reviews', 'displayName' => 'Reviews', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'FRAGRANCE' => 'FRAGRANCE', 'NAILS' => 'NAILS', 'Gifts' => 'Gifts', 'SUN &amp; TANNING' => 'SUN &amp; TANNING')), 'Show Me' => array('name' => 'Show Me', 'displayName' => 'Show Me', 'categories' => array('all' => 'all', 'SKIN' => 'SKIN', 'MAKEUP' => 'MAKEUP', 'HAIR' => 'HAIR', 'NAILS' => 'NAILS'))), 'siteId' => '79'))
     (vendor/sensio/framework-extra-bundle/EventListener/TemplateListener.php:103)
  at Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener->onKernelView(object(ViewEvent), 'kernel.view', object(TraceableEventDispatcher))
     (vendor/symfony/symfony/src/Symfony/Component/EventDispatcher/Debug/WrappedListener.php:126)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ViewEvent), 'kernel.view', object(TraceableEventDispatcher))
     (vendor/symfony/symfony/src/Symfony/Component/EventDispatcher/EventDispatcher.php:264)
  at Symfony\Component\EventDispatcher\EventDispatcher->doDispatch(array(object(WrappedListener)), 'kernel.view', object(ViewEvent))
     (vendor/symfony/symfony/src/Symfony/Component/EventDispatcher/EventDispatcher.php:239)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener)), 'kernel.view', object(ViewEvent))
     (vendor/symfony/symfony/src/Symfony/Component/EventDispatcher/EventDispatcher.php:73)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ViewEvent), 'kernel.view')
     (vendor/symfony/symfony/src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php:168)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ViewEvent), 'kernel.view')
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:174)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(AppRequest), 1)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:81)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(AppRequest), 1, true)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle(object(AppRequest))
     (web/v2/app_dev.php:66)
Top Tips for Your Winter Skincare Routine image

#SKIN

Top Tips for Your Winter Skincare Routine

Soothe dry skin in winter with our top tips & skincare…

Glow Up Your Summer Makeup Routine image

#MAKEUP

Glow Up Your Summer Makeup Routine

This summer, we’re giving makeup routines a glow up. Brighten…

Get the Look: Festive Makeup with L’Oreal Luxe image

#MAKEUP

Get the Look: Festive Makeup with L’Oreal Luxe

Dial up your festive glam with our must-try Christmas makeup…

Your Look, Your Way: Build Your Complexion image

#MAKEUP

Your Look, Your Way: Build Your Complexion

Learn how to do makeup the best way with our face makeup at…

Your Look, Your Way: Build Your Lips image

#MAKEUP

Your Look, Your Way: Build Your Lips

For classic matte shades or glazed doughnut lip gloss, line &…

Your Look, Your Way: Build Your Eyes image

#MAKEUP

Your Look, Your Way: Build Your Eyes

Define eyes using naturally cool, colourful, bold glam or…

Celebrate Carnival Makeup with Sephora Collection image

#MAKEUP

Celebrate Carnival Makeup with Sephora Collection

Get creative & live your festival fantasy with our carnival…

How to Style Curtain Bangs: Get The ‘70s Fringe image

#HAIR

How to Style Curtain Bangs: Get The ‘70s Fringe

Channel a dreamy ‘70s fringe with our guide on how to style…

Ask the Experts: Happy Scalp, Happy Hair with Aveda image

#HAIR

Ask the Experts: Happy Scalp, Happy Hair with Aveda

A good haircare routine starts with scalp care. Get your hair &…

Ask the Experts: How to Apply HAUS LABS with Sarah Tanno image

#MAKEUP

Ask the Experts: How to Apply HAUS LABS with Sarah…

Learn how to apply a full face of HAUS LABS by Lady Gaga at…

Ask the Experts: How to Get Dewy Skin with Glow Recipe image

#SKIN

Ask the Experts: How to Get Dewy Skin with Glow…

Say hello to dewy skin that looks hydrated, fresh & smooth.…

Bold, Bright, Beautiful: Celebrating with Pride Nails image

#NAILS

Bold, Bright, Beautiful: Celebrating with Pride…

Celebrate pride month now & beyond with our joyful pride nail…

Sephora x Glow Up image

#MAKEUP

Sephora x Glow Up

The world’s biggest makeup television show has returned for a…

Here Comes the Bride: Natural Wedding Makeup Looks image

#MAKEUP

Here Comes the Bride: Natural Wedding Makeup Looks

Ready to walk down the aisle? Discover soft glam & natural…

How to Finesse Your Festival Makeup Looks image

#MAKEUP

How to Finesse Your Festival Makeup Looks

Experiencing festival fever this summer? Fear not, as Sephora…

Best Festival Hair Ideas This Season image

#HAIR

Best Festival Hair Ideas This Season

Need some festival hair inspiration? We’ve got you. Find easy…

Makeup Has No Rules image

#MAKEUP

Makeup Has No Rules

Use your creativity with makeup & express yourself to the max.…

Close

Recently viewed Clear all