Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
26 | 11 | public function __construct(array $styles, $color = null) |
|
27 | { |
||
28 | 11 | $prototype = new Prototype($styles, $color); |
|
29 | 11 | $this->symbolStyles = $prototype->getSpinnerStyles(); |
|
30 | 11 | $this->messageStyles = $prototype->getMessageStyles(); |
|
31 | 11 | $this->percentStyles = $prototype->getPercentStyles(); |
|
32 | 11 | } |
|
57 |