Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class R |
||
11 | { |
||
12 | /** |
||
13 | * Static class. Private Constructor. |
||
14 | */ |
||
15 | // @codeCoverageIgnoreStart |
||
16 | protected function __construct() |
||
18 | } |
||
19 | // @codeCoverageIgnoreEnd |
||
20 | |||
21 | /** |
||
22 | * @param int $start |
||
23 | * @param int $stop |
||
24 | * @param int|float $step |
||
25 | * @return Rewindable |
||
26 | */ |
||
27 | 12 | public static function range(int $start, int $stop, $step = 1): Rewindable |
|
33 |