Passed
Push — master ( 89f27a...b90b87 )
by P.R.
02:25
created
src/Command/PropertiesCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.