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