| Conditions | 4 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 20 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 32 | public function match($address): bool |
||
| 33 | { |
||
| 34 | if (0 == $this->step || !is_int($address)) { |
||
| 35 | return false; |
||
| 36 | } |
||
| 37 | $start = $this->detectStart($this->count); |
||
| 38 | $end = $this->detectEnd($this->count); |
||
| 39 | |||
| 40 | return $this->isInRange($address, $start, $end) && $this->isOnStep($address, $start); |
||
| 41 | } |
||
| 83 |