@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | { |
| 81 | 81 | $key = ClassHelper::classDeclarationLine($lines, 'PlaisioKernel'); |
| 82 | 82 | |
| 83 | - if ($key<=2 || ($lines[$key - 1]!==' */' && $lines[$key - 1]!=='#[\AllowDynamicProperties]')) |
|
| 83 | + if ($key <= 2 || ($lines[$key - 1]!==' */' && $lines[$key - 1]!=='#[\AllowDynamicProperties]')) |
|
| 84 | 84 | { |
| 85 | 85 | throw new ConfigException('Unable to add property'); |
| 86 | 86 | } |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | $properties = array_merge($properties, $config->queryKernelProperties()); |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | - usort($properties, function ($a, $b) { |
|
| 136 | + usort($properties, function($a, $b) { |
|
| 137 | 137 | return $a['name']<=>$b['name']; |
| 138 | 138 | }); |
| 139 | 139 | |