Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class CustomStyle extends AStylePattern |
||
14 | { |
||
15 | public function __construct( |
||
16 | protected iterable $pattern, |
||
17 | ?int $interval = null, |
||
18 | protected ColorMode $colorMode = self::COLOR_MODE, |
||
19 | ) { |
||
20 | parent::__construct($interval); |
||
21 | } |
||
22 | |||
23 | public function getColorMode(): ColorMode |
||
26 | } |
||
27 | |||
28 | protected function pattern(): Traversable |
||
31 | } |
||
32 | } |
||
33 |