<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Sylius\Bundle\LocaleBundle\Listener;
use Sylius\Component\Locale\Context\LocaleContextInterface;
use Sylius\Component\Locale\Context\LocaleNotFoundException;
use Sylius\Component\Locale\Provider\LocaleProviderInterface;
use Symfony\Component\HttpKernel\Event\RequestEvent;
final class RequestLocaleSetter
{
public function __construct(private LocaleContextInterface $localeContext, private LocaleProviderInterface $localeProvider)
{
}
/**
* @throws LocaleNotFoundException
*/
public function onKernelRequest(RequestEvent $event): void
{
$request = $event->getRequest();
$request->setLocale($this->localeContext->getLocaleCode());
$request->setDefaultLocale($this->localeProvider->getDefaultLocaleCode());
}
}