| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | 13 | private function filterDuration($duration) |
|
| 50 | { |
||
| 51 | 13 | $nonNegativeInteger = filter_var($duration, FILTER_VALIDATE_INT, array('options' => array('min_range' => 0))); |
|
| 52 | |||
| 53 | 13 | if ($nonNegativeInteger === false) { |
|
| 54 | 7 | throw new \InvalidArgumentException('Invalid duration: ' . print_r($duration, true)); |
|
| 55 | } |
||
| 56 | |||
| 57 | 6 | return $nonNegativeInteger; |
|
| 58 | } |
||
| 65 |