@@ -2,7 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace PhpSchool\CliMenu; |
4 | 4 | |
5 | -use PhpSchool\CliMenu\Exception\InvalidInstantiationException; |
|
6 | 5 | use PhpSchool\CliMenu\Exception\InvalidTerminalException; |
7 | 6 | use PhpSchool\CliMenu\Exception\MenuNotOpenException; |
8 | 7 | use PhpSchool\CliMenu\MenuItem\LineBreakItem; |
@@ -384,7 +384,7 @@ |
||
384 | 384 | } |
385 | 385 | |
386 | 386 | unset($this->items[$key]); |
387 | - $this->items =array_values($this->items); |
|
387 | + $this->items =array_values($this->items); |
|
388 | 388 | } |
389 | 389 | |
390 | 390 | /** |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | : $this->selectedItem++; |
216 | 216 | |
217 | 217 | if (!array_key_exists($this->selectedItem, $this->items)) { |
218 | - $this->selectedItem = $direction === 'up' |
|
218 | + $this->selectedItem = $direction === 'up' |
|
219 | 219 | ? end($itemKeys) |
220 | 220 | : reset($itemKeys); |
221 | 221 | } elseif ($this->getSelectedItem()->canSelect()) { |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | $frame->addRows($this->drawMenuItem(new LineBreakItem($this->style->getTitleSeparator()))); |
276 | 276 | } |
277 | 277 | |
278 | - array_map(function ($item, $index) use ($frame) { |
|
278 | + array_map(function($item, $index) use ($frame) { |
|
279 | 279 | $frame->addRows($this->drawMenuItem($item, $index === $this->selectedItem)); |
280 | 280 | }, $this->items, array_keys($this->items)); |
281 | 281 | |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | ? $this->style->getSelectedUnsetCode() |
310 | 310 | : $this->style->getUnselectedUnsetCode(); |
311 | 311 | |
312 | - return array_map(function ($row) use ($setColour, $unsetColour) { |
|
312 | + return array_map(function($row) use ($setColour, $unsetColour) { |
|
313 | 313 | return sprintf( |
314 | 314 | "%s%s%s%s%s%s%s\n\r", |
315 | 315 | str_repeat(' ', $this->style->getMargin()), |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | } |
385 | 385 | |
386 | 386 | unset($this->items[$key]); |
387 | - $this->items =array_values($this->items); |
|
387 | + $this->items = array_values($this->items); |
|
388 | 388 | } |
389 | 389 | |
390 | 390 | /** |