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
|
<?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_SG extends PhoneMetadata
{
protected const ID = 'SG';
protected const COUNTRY_CODE = 65;
protected ?string $nationalPrefixForParsing = '777777';
protected ?string $internationalPrefix = '0[0-3][0-9]';
public function __construct()
{
$this->generalDesc = (new PhoneNumberDesc())
->setNationalNumberPattern('[13689]\d{7,10}')
->setPossibleLength([8, 10, 11]);
$this->mobile = (new PhoneNumberDesc())
->setNationalNumberPattern('[89]\d{7}')
->setExampleNumber('81234567')
->setPossibleLength([8]);
$this->premiumRate = (new PhoneNumberDesc())
->setNationalNumberPattern('1900\d{7}')
->setExampleNumber('19001234567')
->setPossibleLength([11]);
$this->fixedLine = (new PhoneNumberDesc())
->setNationalNumberPattern('[36]\d{7}')
->setExampleNumber('31234567')
->setPossibleLength([8]);
$this->numberFormat = [
(new NumberFormat())
->setPattern('(\d{4})(\d{4})')
->setFormat('$1 $2')
->setLeadingDigitsPattern(['[369]|8[1-9]'])
->setNationalPrefixOptionalWhenFormatting(false),
(new NumberFormat())
->setPattern('(\d{4})(\d{3})(\d{4})')
->setFormat('$1 $2 $3')
->setLeadingDigitsPattern(['1[89]'])
->setNationalPrefixOptionalWhenFormatting(false),
(new NumberFormat())
->setPattern('(\d{3})(\d{3})(\d{4})')
->setFormat('$1 $2 $3')
->setLeadingDigitsPattern(['800'])
->setNationalPrefixOptionalWhenFormatting(false),
];
$this->tollFree = (new PhoneNumberDesc())
->setNationalNumberPattern('1?800\d{7}')
->setExampleNumber('8001234567')
->setPossibleLength([10, 11]);
$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();
}
}
|