@@ -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 |
@@ -75,7 +75,7 @@ |
||
75 | 75 | |
76 | 76 | private function setFlag($flags, $flag, $op) { |
77 | 77 | if ($op == 'set') { |
78 | - return $flags | constant('LightnCandy\LightnCandy::' . $flag); |
|
78 | + return $flags | constant('LightnCandy\LightnCandy::'.$flag); |
|
79 | 79 | } |
80 | 80 | return $flags & ~constant('LightnCandy\LightnCandy::'.$flag); |
81 | 81 | } |