Passed
Push — master ( a90c04...25f10c )
by Attila
02:58
created
src/Console/Commands/EnumsCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,15 +42,15 @@
 block discarded – undo
42 42
     {
43 43
         $table = [];
44 44
 
45
-        $bindings->map(function ($item, $key) {
45
+        $bindings->map(function($item, $key) {
46 46
             return [
47 47
                 'shortName' => shorten($key),
48 48
                 'abstract'  => $key,
49 49
                 'concrete'  => $item
50 50
             ];
51
-        })->sort(function ($a, $b) {
51
+        })->sort(function($a, $b) {
52 52
             return $a['shortName'] > $b['shortName'];
53
-        })->each(function ($binding) use (&$table) {
53
+        })->each(function($binding) use (&$table) {
54 54
             $table[] = [
55 55
                 $binding['shortName'],
56 56
                 $binding['abstract'],
Please login to merge, or discard this patch.