Passed
Push — master ( 9e3d9f...33a1a9 )
by Aydin
01:50
created
src/Dialogue/Dialogue.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,12 +69,12 @@
 block discarded – undo
69 69
     {
70 70
         //y
71 71
         $textLines = count(explode("\n", $this->text)) + 2;
72
-        $this->y = (int) (ceil($this->parentMenu->getCurrentFrame()->count() / 2) - ceil($textLines / 2) + 1);
72
+        $this->y = (int) (ceil($this->parentMenu->getCurrentFrame()->count()/2) - ceil($textLines/2) + 1);
73 73
 
74 74
         //x
75 75
         $parentStyle = $this->parentMenu->getStyle();
76
-        $dialogueHalfLength = (int) ((mb_strlen($this->text) + ($this->style->getPaddingLeftRight() * 2)) / 2);
77
-        $widthHalfLength = (int) ceil($parentStyle->getWidth() / 2 + $parentStyle->getMargin());
76
+        $dialogueHalfLength = (int) ((mb_strlen($this->text) + ($this->style->getPaddingLeftRight()*2))/2);
77
+        $widthHalfLength = (int) ceil($parentStyle->getWidth()/2 + $parentStyle->getMargin());
78 78
         $this->x = $widthHalfLength - $dialogueHalfLength;
79 79
     }
80 80
 
Please login to merge, or discard this patch.
src/Dialogue/Confirm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         $this->emptyRow();
37 37
 
38 38
         $confirmText = sprintf(' < %s > ', $confirmText);
39
-        $leftFill    = (int) (($promptWidth / 2) - (mb_strlen($confirmText) / 2));
39
+        $leftFill    = (int) (($promptWidth/2) - (mb_strlen($confirmText)/2));
40 40
 
41 41
         $this->write(sprintf(
42 42
             "%s%s%s%s%s%s%s\n",
Please login to merge, or discard this patch.
src/Input/InputIO.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     {
99 99
         return max(
100 100
             array_map(
101
-                function (string $line) {
101
+                function(string $line) {
102 102
                     return mb_strlen($line);
103 103
                 },
104 104
                 $lines
@@ -110,14 +110,14 @@  discard block
 block discarded – undo
110 110
     {
111 111
         $lines = 5; //1. empty 2. prompt text 3. empty 4. input 5. empty
112 112
 
113
-        return (int) (ceil($this->parentMenu->getCurrentFrame()->count() / 2) - ceil($lines /2) + 1);
113
+        return (int) (ceil($this->parentMenu->getCurrentFrame()->count()/2) - ceil($lines/2) + 1);
114 114
     }
115 115
 
116 116
     private function calculateYPositionWithError() : int
117 117
     {
118 118
         $lines = 7; //1. empty 2. prompt text 3. empty 4. input 5. empty 6. error 7. empty
119 119
 
120
-        return (int) (ceil($this->parentMenu->getCurrentFrame()->count() / 2) - ceil($lines /2) + 1);
120
+        return (int) (ceil($this->parentMenu->getCurrentFrame()->count()/2) - ceil($lines/2) + 1);
121 121
     }
122 122
 
123 123
     private function calculateXPosition(Input $input, string $userInput) : int
@@ -131,8 +131,8 @@  discard block
 block discarded – undo
131 131
         );
132 132
 
133 133
         $parentStyle     = $this->parentMenu->getStyle();
134
-        $halfWidth       = ($width + ($input->getStyle()->getPaddingLeftRight() * 2)) / 2;
135
-        $parentHalfWidth = ceil($parentStyle->getWidth() / 2 + $parentStyle->getMargin());
134
+        $halfWidth       = ($width + ($input->getStyle()->getPaddingLeftRight()*2))/2;
135
+        $parentHalfWidth = ceil($parentStyle->getWidth()/2 + $parentStyle->getMargin());
136 136
 
137 137
         return (int) ($parentHalfWidth - $halfWidth);
138 138
     }
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
         );
165 165
 
166 166
         $textLength = mb_strlen(StringUtil::stripAnsiEscapeSequence($text));
167
-        $leftFill   = (int) (($width / 2) - ($textLength / 2));
167
+        $leftFill   = (int) (($width/2) - ($textLength/2));
168 168
         $rightFill  = (int) ceil($width - $leftFill - $textLength);
169 169
 
170 170
         $this->drawLine(
Please login to merge, or discard this patch.
src/Input/Number.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,11 +79,11 @@
 block discarded – undo
79 79
 
80 80
     public function ask() : InputResult
81 81
     {
82
-        $this->inputIO->registerControlCallback(InputCharacter::UP, function (string $input) {
82
+        $this->inputIO->registerControlCallback(InputCharacter::UP, function(string $input) {
83 83
             return $this->validate($input) ? (int) $input + 1 : $input;
84 84
         });
85 85
 
86
-        $this->inputIO->registerControlCallback(InputCharacter::DOWN, function (string $input) {
86
+        $this->inputIO->registerControlCallback(InputCharacter::DOWN, function(string $input) {
87 87
             return $this->validate($input) ? (int) $input - 1 : $input;
88 88
         });
89 89
 
Please login to merge, or discard this patch.
src/MenuItem/SplitItem.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -113,16 +113,16 @@  discard block
 block discarded – undo
113 113
         }
114 114
 
115 115
         $length = $style->getDisplaysExtra()
116
-            ? floor($style->getContentWidth() / $numberOfItems) - (mb_strlen($style->getItemExtra()) + 2)
117
-            : floor($style->getContentWidth() / $numberOfItems);
116
+            ? floor($style->getContentWidth()/$numberOfItems) - (mb_strlen($style->getItemExtra()) + 2)
117
+            : floor($style->getContentWidth()/$numberOfItems);
118 118
         
119 119
         $length -= $this->gutter;
120 120
         $length = (int) $length;
121 121
         
122
-        $missingLength = $style->getContentWidth() % $numberOfItems;
122
+        $missingLength = $style->getContentWidth()%$numberOfItems;
123 123
         
124 124
         return $this->buildRows(
125
-            array_map(function ($index, $item) use ($selected, $length, $style) {
125
+            array_map(function($index, $item) use ($selected, $length, $style) {
126 126
                 $isSelected = $selected && $index === $this->selectedItemIndex;
127 127
                 $marker = $item->canSelect()
128 128
                     ? sprintf('%s', $style->getMarker($isSelected))
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
         $extraPadLength = $style->getDisplaysExtra() ? 2 + mb_strlen($style->getItemExtra()) : 0;
162 162
         
163 163
         return array_map(
164
-            function ($i) use ($cells, $length, $missingLength, $extraPadLength) {
164
+            function($i) use ($cells, $length, $missingLength, $extraPadLength) {
165 165
                 return $this->buildRow($cells, $i, $length, $missingLength, $extraPadLength);
166 166
             },
167 167
             range(0, max(array_map('count', $cells)) - 1)
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
             implode(
176 176
                 '',
177 177
                 array_map(
178
-                    function ($cell) use ($index, $length, $extraPadLength) {
178
+                    function($cell) use ($index, $length, $extraPadLength) {
179 179
                         return $cell[$index] ?? str_repeat(' ', $length + $this->gutter + $extraPadLength);
180 180
                     },
181 181
                     $cells
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
         bool $isSelected,
193 193
         string $itemExtra
194 194
     ) : array {
195
-        return array_map(function ($row, $index) use ($length, $style, $isSelected, $itemExtra) {
195
+        return array_map(function($row, $index) use ($length, $style, $isSelected, $itemExtra) {
196 196
             $invertedColoursSetCode = $isSelected
197 197
                 ? $style->getInvertedColoursSetCode()
198 198
                 : '';
Please login to merge, or discard this patch.
src/MenuItem/AsciiArtItem.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         Assertion::inArray($position, [self::POSITION_CENTER, self::POSITION_RIGHT, self::POSITION_LEFT]);
43 43
 
44 44
         $this->setText($text);
45
-        $this->position  = $position;
45
+        $this->position = $position;
46 46
         $this->alternateText = $alt;
47 47
     }
48 48
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
         $padding = $style->getContentWidth() - $this->artLength;
60 60
 
61
-        return array_map(function ($row) use ($padding) {
61
+        return array_map(function($row) use ($padding) {
62 62
             switch ($this->position) {
63 63
                 case self::POSITION_LEFT:
64 64
                     break;
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
                     break;
68 68
                 case self::POSITION_CENTER:
69 69
                 default:
70
-                    $left = (int) ceil($padding / 2);
70
+                    $left = (int) ceil($padding/2);
71 71
                     $row = sprintf('%s%s', str_repeat(' ', $left), $row);
72 72
                     break;
73 73
             }
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     public function setText(string $text) : void
107 107
     {
108
-        $this->text = implode("\n", array_map(function (string $line) {
108
+        $this->text = implode("\n", array_map(function(string $line) {
109 109
             return rtrim($line, ' ');
110 110
         }, explode("\n", $text)));
111 111
 
Please login to merge, or discard this patch.
src/CliMenu.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
                 : $this->selectedItem++;
296 296
 
297 297
             if ($this->selectedItem !== null && !array_key_exists($this->selectedItem, $this->items)) {
298
-                $this->selectedItem  = $direction === 'UP'
298
+                $this->selectedItem = $direction === 'UP'
299 299
                     ? end($itemKeys)
300 300
                     : reset($itemKeys);
301 301
             }
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
             $frame->addRows($this->drawMenuItem(new LineBreakItem($this->style->getTitleSeparator())));
425 425
         }
426 426
 
427
-        array_map(function ($item, $index) use ($frame) {
427
+        array_map(function($item, $index) use ($frame) {
428 428
             $frame->addRows($this->drawMenuItem($item, $index === $this->selectedItem));
429 429
         }, $this->items, array_keys($this->items));
430 430
 
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
             $borderColour = '';
476 476
         }
477 477
 
478
-        return array_map(function ($row) use ($invertedColoursSetCode, $invertedColoursUnsetCode, $borderColour) {
478
+        return array_map(function($row) use ($invertedColoursSetCode, $invertedColoursUnsetCode, $borderColour) {
479 479
             return sprintf(
480 480
                 "%s%s%s%s%s%s%s%s%s%s%s%s\n",
481 481
                 str_repeat(' ', $this->style->getMargin()),
Please login to merge, or discard this patch.
src/MenuStyle.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
     protected function calculateContentWidth() : void
333 333
     {
334 334
         $this->contentWidth = $this->width
335
-            - ($this->paddingLeftRight * 2)
335
+            - ($this->paddingLeftRight*2)
336 336
             - ($this->borderRightWidth + $this->borderLeftWidth);
337 337
 
338 338
         if ($this->contentWidth < 0) {
@@ -485,7 +485,7 @@  discard block
 block discarded – undo
485 485
     public function setMarginAuto() : self
486 486
     {
487 487
         $this->marginAuto = true;
488
-        $this->margin = (int) floor(($this->terminal->getWidth() - $this->width) / 2);
488
+        $this->margin = (int) floor(($this->terminal->getWidth() - $this->width)/2);
489 489
 
490 490
         $this->generateBorderRows();
491 491
         $this->generatePaddingTopBottomRows();
Please login to merge, or discard this patch.