Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | final class CustomPattern extends AReversiblePattern |
||
13 | { |
||
14 | public function __construct( |
||
15 | protected iterable $pattern, |
||
16 | ?int $interval = null, |
||
17 | bool $reversed = false |
||
18 | ) { |
||
19 | parent::__construct($interval, $reversed); |
||
20 | } |
||
21 | |||
22 | protected function pattern(): Traversable |
||
25 | } |
||
26 | } |
||
27 |