@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | { |
20 | 20 | $value = $this->getBxConfig()->get($key); |
21 | 21 | |
22 | - if (! empty($value)) { |
|
22 | + if (!empty($value)) { |
|
23 | 23 | return $value; |
24 | 24 | } |
25 | 25 | |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | $root = $this->getBxConfig()->get(array_shift($keyPath)); |
29 | 29 | |
30 | - if (empty($root) || ! is_array($root)) { |
|
30 | + if (empty($root) || !is_array($root)) { |
|
31 | 31 | return ''; |
32 | 32 | } |
33 | 33 |