Passed
Push — master ( e0735c...1f544a )
by P.R.
12:58 queued 10:59
created
src/Command/KernelPropertiesCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
   {
80 80
     $key = ClassHelper::classDeclarationLine($lines, 'PlaisioKernel');
81 81
 
82
-    if ($key<=2 || ($lines[$key - 1]!==' */' && $lines[$key - 1]!=='#[\AllowDynamicProperties]'))
82
+    if ($key <= 2 || ($lines[$key - 1]!==' */' && $lines[$key - 1]!=='#[\AllowDynamicProperties]'))
83 83
     {
84 84
       throw new RuntimeException('Unable to add property');
85 85
     }
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
       $properties = array_merge($properties, $config->queryKernelProperties());
133 133
     }
134 134
 
135
-    usort($properties, function ($a, $b) {
135
+    usort($properties, function($a, $b) {
136 136
       return $a['name']<=>$b['name'];
137 137
     });
138 138
 
Please login to merge, or discard this patch.