Completed
Push — develop ( 45216f...b85a0a )
by Jens
02:57
created
src/Helper/TranslationHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     {
74 74
         $args = [];
75 75
         foreach ($options as $key => $value) {
76
-            $key = $this->interpolationPrefix . $key . $this->interpolationSuffix;
76
+            $key = $this->interpolationPrefix.$key.$this->interpolationSuffix;
77 77
             $args[$key] = $value;
78 78
         }
79 79
         return $args;
@@ -81,6 +81,6 @@  discard block
 block discarded – undo
81 81
 
82 82
     private function getOptionValue($options, $key, $default = null)
83 83
     {
84
-        return isset($options[$key]) ? $options[$key]: $default;
84
+        return isset($options[$key]) ? $options[$key] : $default;
85 85
     }
86 86
 }
Please login to merge, or discard this patch.