| 1 | <?php |
||
| 8 | class Exclusion |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var null|array |
||
| 12 | */ |
||
| 13 | private $groups; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var null|float |
||
| 17 | */ |
||
| 18 | private $sinceVersion; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var null|float |
||
| 22 | */ |
||
| 23 | private $untilVersion; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var null|integer |
||
| 27 | */ |
||
| 28 | private $maxDepth; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var null|string |
||
| 32 | */ |
||
| 33 | private $excludeIf; |
||
| 34 | |||
| 35 | public function __construct( |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @return null|array |
||
| 51 | */ |
||
| 52 | public function getGroups() |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @return null|float |
||
| 59 | */ |
||
| 60 | public function getSinceVersion() |
||
| 64 | |||
| 65 | /** |
||
| 66 | * @return null|float |
||
| 67 | */ |
||
| 68 | public function getUntilVersion() |
||
| 72 | |||
| 73 | /** |
||
| 74 | * @return int|null |
||
| 75 | */ |
||
| 76 | public function getMaxDepth() |
||
| 80 | |||
| 81 | /** |
||
| 82 | * @return null|string |
||
| 83 | */ |
||
| 84 | public function getExcludeIf() |
||
| 88 | } |
||
| 89 |