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