*/ class IdentityTranslator implements LegacyTranslatorInterface, TranslatorInterface { use TranslatorTrait { trans as private doTrans; setLocale as private doSetLocale; } private $selector; public function __construct(MessageSelector $selector = null) { $this->selector = $selector; if (__CLASS__ !== static::class) { @trigger_error(sprintf('Calling "%s()" is deprecated since Symfony 4.2.', __METHOD__), \E_USER_DEPRECATED); } } /** * {@inheritdoc} */ public function trans($id, array $parameters = [], $domain = null, $locale = null) { return $this->doTrans($id, $parameters, $domain, $locale); } /** * {@inheritdoc} */ public function setLocale($locale) { $this->doSetLocale($locale); } /** * {@inheritdoc} * * @deprecated since Symfony 4.2, use the trans() method instead with a %count% parameter */ public function transChoice($id, $number, array $parameters = [], $domain = null, $locale = null) { @trigger_error(sprintf('The "%s()" method is deprecated since Symfony 4.2, use the trans() one instead with a "%%count%%" parameter.', __METHOD__), \E_USER_DEPRECATED); if ($this->selector) { return strtr($this->selector->choose((string) $id, $number, $locale ?: $this->getLocale()), $parameters); } return $this->trans($id, ['%count%' => $number] + $parameters, $domain, $locale); } private function getPluralizationRule(float $number, string $locale): int { return PluralizationRules::get($number, $locale, false); } } __halt_compiler();----SIGNATURE:----WO5qx1oP/qTxRy9V8FtshoD8Z/V+9nG9dftgPJPjpLw4wXvnS/KbxApO8MDi9VYtx1K67qtEsYQThZGzIFmFatoEKgACHvmE/B8W2hnDpmZiJ5GiSB4CQzn+P4VGhJJkZu9CcVx7z4bofMa1GfuYvffceBjkIdbjDKnaHE04bQ9aiYdIOVEuSz/JsTVzbnMc5crCvSoZni7rkohuiwc19/60qRpWtFpnm93pTYB2DBMoHOzVMbszl20BcnnXYKG8HZtSZNFMu9c+8t0xDC7dtLrTYrgWEZrI7pj9hJRSmFbAOMiNl6Uxly3g4o3KnSMwV0vQ2y9nI9YFkSyRvAJZnNJIVIYiR9XQZXjVuOmOBe3rlhlElQG0/8QK9gKb8MVwuHsu9k0Kw8fJPJv/VLM2BAKTcrGUVq82p5AluM5Mug6+MzQdHMgzDdUyv6H7s839BaOrsDop525H+9uC1gNo4JDCiwR7pTlVl4O/JCrC4LiJM4NjQRHE2PIoyuQdslbudM/n2Yfe0bKNSPtZmGg53OCCjzeSoIVycB1OiKh6JFSWNaU6E1WxDJgyRbweldSZsP41Puo5KgJy5laLEwurlDMjZJdrTUYLG2p1Pf0Flkg1r3Cm310gFlHxOZxC0slfTMqHSUPfRnHUguF+7YvXm/dvzi6+xH4MwCiWrTzolyg=----ATTACHMENT:----ODQ4NDg4ODc4MTM0MTk2NCAyMDg5MTU4NjkyOTYzMzcyIDcwNTY0Mzc4NTMxMzY5OA==