Completed
Push — master ( 1b9dfa...0adb34 )
by Aydin
21s queued 10s
created
src/MenuItem/MenuMenuItem.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
             )
71 71
         );
72 72
 
73
-        return mapWithKeys($rows, function (int $key, string $row) use ($style, $length) {
73
+        return mapWithKeys($rows, function(int $key, string $row) use ($style, $length) {
74 74
             $text = $this->disabled ? $style->getDisabledItemText($row) : $row;
75 75
 
76 76
             if ($key === 0) {
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      */
110 110
     public function getSelectAction() : ?callable
111 111
     {
112
-        return function (CliMenu $menu) {
112
+        return function(CliMenu $menu) {
113 113
             $this->showSubMenu($menu);
114 114
         };
115 115
     }
Please login to merge, or discard this patch.
src/MenuItem/SelectableItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
             )
72 72
         );
73 73
 
74
-        return mapWithKeys($rows, function (int $key, string $row) use ($style, $length) {
74
+        return mapWithKeys($rows, function(int $key, string $row) use ($style, $length) {
75 75
             $text = $this->disabled ? $style->getDisabledItemText($row) : $row;
76 76
 
77 77
             if ($key === 0) {
Please login to merge, or discard this patch.