@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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; |