1<?php
2
3/**
4 * @see       https://github.com/laminas/laminas-i18n for the canonical source repository
5 * @copyright https://github.com/laminas/laminas-i18n/blob/master/COPYRIGHT.md
6 * @license   https://github.com/laminas/laminas-i18n/blob/master/LICENSE.md New BSD License
7 */
8
9return [
10    'code' => '1',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[3589]\\d{9}$/',
14            'fixed' => '/^345(?:2(?:22|44)|444|6(?:23|38|40)|7(?:4[35-79]|6[6-9]|77)|8(?:00|1[45]|25|[48]8)|9(?:14|4[035-9]))\\d{4}$/',
15            'mobile' => '/^345(?:32[1-9]|5(?:1[67]|2[5-7]|4[6-8]|76)|9(?:1[67]|2[3-9]|3[689]))\\d{4}$/',
16            'pager' => '/^345849\\d{4}$/',
17            'tollfree' => '/^8(?:00|55|66|77|88)[2-9]\\d{6}$/',
18            'premium' => '/^(?:900[2-9]\\d{6}|345976\\d{4})$/',
19            'personal' => '/^5(?:00|33|44)[2-9]\\d{6}$/',
20            'emergency' => '/^911$/',
21        ],
22        'possible' => [
23            'general' => '/^\\d{7}(?:\\d{3})?$/',
24            'mobile' => '/^\\d{10}$/',
25            'pager' => '/^\\d{10}$/',
26            'tollfree' => '/^\\d{10}$/',
27            'premium' => '/^\\d{10}$/',
28            'personal' => '/^\\d{10}$/',
29            'emergency' => '/^\\d{3}$/',
30        ],
31    ],
32];
33