From f272d2a529b77fd35e2d61f85c8406599f57d36e Mon Sep 17 00:00:00 2001 From: amadrocky <42570525+amadrocky@users.noreply.github.com> Date: Thu, 8 Jun 2023 11:35:09 +0200 Subject: [PATCH] Update TranslationService.php Use native \sprintf function. --- src/Service/TranslationService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/TranslationService.php b/src/Service/TranslationService.php index 666d60b..37d61e0 100755 --- a/src/Service/TranslationService.php +++ b/src/Service/TranslationService.php @@ -27,7 +27,7 @@ use Symfony\Contracts\Cache\ItemInterface; use Symfony\Contracts\Translation\TranslatorInterface; -use function \Safe\sprintf; +use function \sprintf; class TranslationService {