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