* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Translation; if (!\function_exists(\Symfony\Component\Translation\t::class)) { /** * @author Nate Wiebe */ function t(string $message, array $parameters = [], string $domain = null) : \Symfony\Component\Translation\TranslatableMessage { return new \Symfony\Component\Translation\TranslatableMessage($message, $parameters, $domain); } }