Deprecated: Return type of Google\Model::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Model.php on line 256

Deprecated: Return type of Google\Model::offsetGet($offset) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Model.php on line 261

Deprecated: Return type of Google\Model::offsetSet($offset, $value) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Model.php on line 268

Deprecated: Return type of Google\Model::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Model.php on line 278

Deprecated: Return type of Google\Collection::current() should either be compatible with Iterator::current(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 22

Deprecated: Return type of Google\Collection::next() should either be compatible with Iterator::next(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 38

Deprecated: Return type of Google\Collection::key() should either be compatible with Iterator::key(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 30

Deprecated: Return type of Google\Collection::valid() should either be compatible with Iterator::valid(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 43

Deprecated: Return type of Google\Collection::rewind() should either be compatible with Iterator::rewind(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 14

Deprecated: Return type of Google\Collection::count() should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 49
Symfony Profiler

vendor/symfony/http-kernel/EventListener/LocaleAwareListener.php line 45

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\HttpKernel\EventListener;
  11. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  12. use Symfony\Component\HttpFoundation\RequestStack;
  13. use Symfony\Component\HttpKernel\Event\FinishRequestEvent;
  14. use Symfony\Component\HttpKernel\Event\RequestEvent;
  15. use Symfony\Component\HttpKernel\KernelEvents;
  16. use Symfony\Contracts\Translation\LocaleAwareInterface;
  17. /**
  18.  * Pass the current locale to the provided services.
  19.  *
  20.  * @author Pierre Bobiet <pierrebobiet@gmail.com>
  21.  */
  22. class LocaleAwareListener implements EventSubscriberInterface
  23. {
  24.     private $localeAwareServices;
  25.     private $requestStack;
  26.     /**
  27.      * @param LocaleAwareInterface[] $localeAwareServices
  28.      */
  29.     public function __construct(iterable $localeAwareServicesRequestStack $requestStack)
  30.     {
  31.         $this->localeAwareServices $localeAwareServices;
  32.         $this->requestStack $requestStack;
  33.     }
  34.     public function onKernelRequest(RequestEvent $event): void
  35.     {
  36.         $this->setLocale($event->getRequest()->getLocale(), $event->getRequest()->getDefaultLocale());
  37.     }
  38.     public function onKernelFinishRequest(FinishRequestEvent $event): void
  39.     {
  40.         if (null === $parentRequest $this->requestStack->getParentRequest()) {
  41.             foreach ($this->localeAwareServices as $service) {
  42.                 $service->setLocale($event->getRequest()->getDefaultLocale());
  43.             }
  44.             return;
  45.         }
  46.         $this->setLocale($parentRequest->getLocale(), $parentRequest->getDefaultLocale());
  47.     }
  48.     public static function getSubscribedEvents()
  49.     {
  50.         return [
  51.             // must be registered after the Locale listener
  52.             KernelEvents::REQUEST => [['onKernelRequest'15]],
  53.             KernelEvents::FINISH_REQUEST => [['onKernelFinishRequest', -15]],
  54.         ];
  55.     }
  56.     private function setLocale(string $localestring $defaultLocale): void
  57.     {
  58.         foreach ($this->localeAwareServices as $service) {
  59.             try {
  60.                 $service->setLocale($locale);
  61.             } catch (\InvalidArgumentException $e) {
  62.                 $service->setLocale($defaultLocale);
  63.             }
  64.         }
  65.     }
  66. }