Completed
Push — develop ( 3f22a1...840d5f )
by Jens
04:24
created
src/Helper/CmsHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Helper/RoutingHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.