1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
<?php
/**
* libphonenumber-for-php data file
* This file has been @generated from libphonenumber data
* Do not modify!
* @internal
*/
declare(strict_types=1);
namespace libphonenumber\Tests\core\data;
use libphonenumber\NumberFormat;
use libphonenumber\PhoneMetadata;
use libphonenumber\PhoneNumberDesc;
/**
* @internal
*/
class PhoneNumberMetadataForTesting_US extends PhoneMetadata
{
protected const ID = 'US';
protected const COUNTRY_CODE = 1;
protected const NATIONAL_PREFIX = '1';
protected ?string $nationalPrefixForParsing = '1';
protected ?string $internationalPrefix = '011';
protected ?string $preferredExtnPrefix = ' extn. ';
protected bool $mainCountryForCode = true;
protected bool $mobileNumberPortableRegion = true;
protected bool $sameMobileAndFixedLinePattern = true;
public function __construct()
{
$this->generalDesc = (new PhoneNumberDesc())
->setNationalNumberPattern('[13-689]\d{9}|2[0-35-9]\d{8}')
->setPossibleLengthLocalOnly([7])
->setPossibleLength([10]);
$this->mobile = (new PhoneNumberDesc())
->setNationalNumberPattern('[13-689]\d{9}|2[0-35-9]\d{8}')
->setExampleNumber('1234567890')
->setPossibleLengthLocalOnly([7]);
$this->premiumRate = (new PhoneNumberDesc())
->setNationalNumberPattern('900\d{7}')
->setExampleNumber('9004567890');
$this->fixedLine = (new PhoneNumberDesc())
->setNationalNumberPattern('[13-689]\d{9}|2[0-35-9]\d{8}')
->setExampleNumber('1234567890')
->setPossibleLengthLocalOnly([7]);
$this->numberFormat = [
(new NumberFormat())
->setPattern('(\d{3})(\d{4})')
->setFormat('$1 $2')
->setLeadingDigitsPattern([])
->setNationalPrefixOptionalWhenFormatting(false),
(new NumberFormat())
->setPattern('(\d{3})(\d{3})(\d{4})')
->setFormat('$1 $2 $3')
->setLeadingDigitsPattern([])
->setNationalPrefixOptionalWhenFormatting(true),
];
$this->tollFree = (new PhoneNumberDesc())
->setNationalNumberPattern('8(?:00|66|77|88)\d{7}')
->setExampleNumber('8004567890');
$this->sharedCost = PhoneNumberDesc::empty();
$this->personalNumber = PhoneNumberDesc::empty();
$this->voip = PhoneNumberDesc::empty();
$this->pager = PhoneNumberDesc::empty();
$this->uan = PhoneNumberDesc::empty();
$this->voicemail = PhoneNumberDesc::empty();
$this->noInternationalDialling = (new PhoneNumberDesc())
->setNationalNumberPattern('800\d{7}')
->setExampleNumber('8004567890');
$this->intlNumberFormat = [
(new NumberFormat())
->setPattern('(\d{3})(\d{3})(\d{4})')
->setFormat('$1 $2 $3')
->setLeadingDigitsPattern([])
->setNationalPrefixOptionalWhenFormatting(true),
];
}
}
|