| Conditions | 4 |
| Paths | 8 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function __construct( |
||
| 36 | array $groups = null, |
||
| 37 | $sinceVersion = null, |
||
| 38 | $untilVersion = null, |
||
| 39 | $maxDepth = null, |
||
| 40 | $excludeIf = null |
||
| 41 | ) { |
||
| 42 | $this->groups = $groups; |
||
| 43 | $this->sinceVersion = null !== $sinceVersion ? (float) $sinceVersion : null; |
||
| 44 | $this->untilVersion = null !== $untilVersion ? (float) $untilVersion : null; |
||
| 45 | $this->maxDepth = null !== $maxDepth ? (int) $maxDepth : null; |
||
| 46 | $this->excludeIf = $excludeIf; |
||
| 47 | } |
||
| 48 | |||
| 89 |