@@ -43,11 +43,11 @@ |
||
| 43 | 43 | } |
| 44 | 44 | } |
| 45 | 45 | if (!is_string($subject)) { |
| 46 | - throw new \InvalidArgumentException('Expected a string or object as subject, got ' . gettype($subject)); |
|
| 46 | + throw new \InvalidArgumentException('Expected a string or object as subject, got '.gettype($subject)); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | if ($alias = $this->toAlias($subject)) { |
| 50 | - return $this->basePath . $alias; |
|
| 50 | + return $this->basePath.$alias; |
|
| 51 | 51 | } |
| 52 | 52 | return null; |
| 53 | 53 | } |
@@ -22,10 +22,10 @@ |
||
| 22 | 22 | $treeBuilder = new TreeBuilder(); |
| 23 | 23 | $rootNode = $treeBuilder->root('zicht_url'); |
| 24 | 24 | |
| 25 | - $isBool = function ($v) { |
|
| 25 | + $isBool = function($v) { |
|
| 26 | 26 | return is_bool($v); |
| 27 | 27 | }; |
| 28 | - $convertToEnabledKey = function ($v) { |
|
| 28 | + $convertToEnabledKey = function($v) { |
|
| 29 | 29 | return ['enabled' => $v]; |
| 30 | 30 | }; |
| 31 | 31 | |