Total Complexity | 0 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
10 | class CircleSpinner extends Spinner |
||
11 | { |
||
12 | protected const ERASING_SHIFT = 1; |
||
13 | protected const INTERVAL = 0.17; |
||
14 | protected const SYMBOLS = SpinnerSymbols::CIRCLES; |
||
15 | protected const |
||
16 | STYLES = |
||
17 | [ |
||
18 | StylesInterface::COLOR256_SPINNER_STYLES => SpinnerStyles::C256_YELLOW_WHITE, |
||
19 | StylesInterface::COLOR_SPINNER_STYLES => SpinnerStyles::C_LIGHT_YELLOW, |
||
20 | StylesInterface::COLOR_MESSAGE_STYLES => SpinnerStyles::C_DARK, |
||
21 | StylesInterface::COLOR_PERCENT_STYLES => SpinnerStyles::C_DARK, |
||
22 | ]; |
||
24 |