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' => '230',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[2-9]\\d{6}$/',
14            'fixed' => '/^(?:2(?:[034789]\\d|1[0-7]|6[1-69])|4(?:[013-8]\\d|2[4-7])|[56]\\d{2}|8(?:14|3[129]))\\d{4}$/',
15            'mobile' => '/^(?:25\\d|4(?:2[12389]|9\\d)|7\\d{2}|8(?:20|7[15-8])|9[1-8]\\d)\\d{4}$/',
16            'pager' => '/^2(?:1[89]|2\\d)\\d{4}$/',
17            'tollfree' => '/^80[012]\\d{4}$/',
18            'premium' => '/^30\\d{5}$/',
19            'voip' => '/^3(?:20|9\\d)\\d{4}$/',
20            'shortcode' => '/^(?:1(?:1[0-36-9]|[02-9]\\d|\\d{3,4})|8\\d{3})$/',
21            'emergency' => '/^(?:11[45]|99\\d)$/',
22        ],
23        'possible' => [
24            'general' => '/^\\d{7}$/',
25            'shortcode' => '/^\\d{3,5}$/',
26            'emergency' => '/^\\d{3}$/',
27        ],
28    ],
29];
30