@@ -19,7 +19,7 @@ |
||
| 19 | 19 | $defaultNamespace = null |
| 20 | 20 | ) { |
| 21 | 21 | $this->translationHelper = $translationHelper; |
| 22 | - $this->defaultNamespace = !is_null($defaultNamespace) ? $defaultNamespace . ':' : ''; |
|
| 22 | + $this->defaultNamespace = !is_null($defaultNamespace) ? $defaultNamespace.':' : ''; |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | public function handle($context, $options) |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | public function handle($context, $options) |
| 22 | 22 | { |
| 23 | 23 | $options = isset($options['hash']) ? $options['hash'] : []; |
| 24 | - $method = 'get' . ucfirst($this->type); |
|
| 24 | + $method = 'get'.ucfirst($this->type); |
|
| 25 | 25 | return $this->$method($context, $options); |
| 26 | 26 | } |
| 27 | 27 | |