Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
symfony
/
validator
/
Util
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/symfony/validator/Util/LegacyTranslatorProxy.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Validator\Util; use Symfony\Component\Translation\TranslatorInterface as LegacyTranslatorInterface; use Symfony\Contracts\Translation\LocaleAwareInterface; use Symfony\Contracts\Translation\TranslatorInterface; /** * @internal to be removed in Symfony 5.0. */ class LegacyTranslatorProxy implements LegacyTranslatorInterface, TranslatorInterface { private $translator; public function __construct(TranslatorInterface $translator) { if (!$translator instanceof LocaleAwareInterface) { throw new \InvalidArgumentException(sprintf('The translator passed to "%s()" must implement "%s".', __METHOD__, LocaleAwareInterface::class)); } $this->translator = $translator; } public function getTranslator(): TranslatorInterface { return $this->translator; } /** * {@inheritdoc} */ public function setLocale($locale) { $this->translator->setLocale($locale); } /** * {@inheritdoc} */ public function getLocale() { return $this->translator->getLocale(); } /** * {@inheritdoc} */ public function trans($id, array $parameters = [], $domain = null, $locale = null) { return $this->translator->trans($id, $parameters, $domain, $locale); } /** * {@inheritdoc} */ public function transChoice($id, $number, array $parameters = [], $domain = null, $locale = null) { return $this->translator->trans($id, ['%count%' => $number] + $parameters, $domain, $locale); } }