Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
9 | abstract class AbstractJuggler implements JugglerInterface |
||
10 | { |
||
11 | /** @var int */ |
||
12 | protected $currentFrameErasingLength; |
||
13 | /** @var Circular */ |
||
14 | protected $style; |
||
15 | /** @var string */ |
||
16 | protected $prefix = Defaults::EMPTY_STRING; |
||
17 | /** @var string */ |
||
18 | protected $suffix = Defaults::EMPTY_STRING; |
||
19 | |||
20 | /** {@inheritDoc} */ |
||
21 | 23 | public function getFrameErasingLength(): int |
|
24 | } |
||
25 | |||
26 | /** {@inheritDoc} */ |
||
27 | 23 | public function getStyledFrame(): string |
|
31 | } |
||
32 | |||
33 | abstract protected function getCurrentFrame():string; |
||
34 | } |
||
35 |