Completed
Push — master ( 2b6913...e398e8 )
by Dominik
02:35
created
src/LocaleTranslationProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Translation;
6 6
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     {
87 87
         $translation = $this->translations[$key];
88 88
         foreach ($arguments as $name => $value) {
89
-            $translation = str_replace('{{' . $name . '}}', $value, $translation);
89
+            $translation = str_replace('{{'.$name.'}}', $value, $translation);
90 90
         }
91 91
 
92 92
         return $translation;
Please login to merge, or discard this patch.