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
|
<?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\prefixmapper\data\en;
/**
* @internal
*/
class En_82
{
public const DATA = [
822 => 'Seoul',
8210 => 'Mobile prefix, should not be geocoded.',
8231 => 'Gyeonggi',
8232 => 'Incheon',
8233 => 'Gangwon',
8241 => 'Chungnam',
8242 => 'Daejeon',
8243 => 'Chungbuk',
8251 => 'Busan',
8252 => 'Ulsan',
8253 => 'Daegu',
8254 => 'Gyeongbuk',
8255 => 'Gyeongnam',
8261 => 'Jeonnam',
8262 => 'Gwangju',
8263 => 'Jeonbuk',
8264 => 'Jeju',
];
}
|