Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
MexicanPhoneNumber | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
fromCountry | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\CountryAndPhoneNumber; |
3 | |
4 | use Apie\Core\Attributes\FakeMethod; |
5 | use Apie\CountryAndPhoneNumber\Concerns\CanCreateRandomPhoneNumber; |
6 | use PrinsFrank\Standards\Country\CountryAlpha2; |
7 | |
8 | #[FakeMethod('createRandomInstance')] |
9 | class MexicanPhoneNumber extends PhoneNumber |
10 | { |
11 | use CanCreateRandomPhoneNumber; |
12 | |
13 | public static function fromCountry(): CountryAlpha2 |
14 | { |
15 | return CountryAlpha2::Mexico; |
16 | } |
17 | } |