Conditions | 3 |
Paths | 3 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 3.576 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | 85 | public function matchesNationalNumber($nationalNumber, PhoneNumberDesc $numberDesc, $allowPrefixMatch) |
|
22 | { |
||
23 | $nationalNumberPatternMatcher = new Matcher($numberDesc->getNationalNumberPattern(), $nationalNumber); |
||
24 | |||
25 | return ($nationalNumberPatternMatcher->matches() |
||
26 | 85 | || ($allowPrefixMatch && $nationalNumberPatternMatcher->lookingAt())); |
|
27 | 85 | } |
|
28 | |||
44 |