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
|
<?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_CO extends PhoneMetadata
{
protected const ID = 'CO';
protected const COUNTRY_CODE = 57;
protected const NATIONAL_PREFIX = '0';
protected ?string $nationalPrefixForParsing = '0(4(?:[14]4|56)|[579])?';
protected ?string $internationalPrefix = '';
protected bool $mobileNumberPortableRegion = true;
public function __construct()
{
$this->generalDesc = (new PhoneNumberDesc())
->setNationalNumberPattern('(?:60|3\d)\d{8}')
->setPossibleLength([10]);
$this->mobile = (new PhoneNumberDesc())
->setNationalNumberPattern('3(?:0[0-5]|1\d|2[0-3]|5[01]|70)\d{7}')
->setExampleNumber('3211234567');
$this->premiumRate = PhoneNumberDesc::empty();
$this->fixedLine = (new PhoneNumberDesc())
->setNationalNumberPattern('60\d{8}')
->setExampleNumber('6012345678');
$this->numberFormat = [
(new NumberFormat())
->setPattern('(\d{3})(\d{7})')
->setFormat('$1 $2')
->setLeadingDigitsPattern(['6'])
->setNationalPrefixFormattingRule('($1)')
->setDomesticCarrierCodeFormattingRule('0$CC $1')
->setNationalPrefixOptionalWhenFormatting(false),
(new NumberFormat())
->setPattern('(\d{3})(\d{7})')
->setFormat('$1 $2')
->setLeadingDigitsPattern(['3'])
->setDomesticCarrierCodeFormattingRule('0$CC $1')
->setNationalPrefixOptionalWhenFormatting(false),
];
$this->tollFree = PhoneNumberDesc::empty();
$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 = PhoneNumberDesc::empty();
}
}
|