Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
43 | 12 | public function isValid(BillContext $context): bool |
|
44 | { |
||
45 | 12 | if (preg_match(sprintf('/%s/', Expr::RANGE), $context->getStructure()) === 0) { |
|
46 | 5 | return false; |
|
47 | } |
||
48 | |||
49 | 7 | $this->ranges = RangeHelper::validate($context->getStructure()); |
|
50 | |||
51 | 5 | return count($this->ranges) > 0; |
|
52 | } |
||
54 |