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' => '297',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[25-9]\\d{6}$/',
14            'fixed' => '/^5(?:2\\d|8[1-9])\\d{4}$/',
15            'mobile' => '/^(?:5(?:6\\d|9[2-478])|6(?:[039]0|22|4[01]|6[0-2])|7[34]\\d|9(?:6[45]|9[4-8]))\\d{4}$/',
16            'tollfree' => '/^800\\d{4}$/',
17            'premium' => '/^900\\d{4}$/',
18            'voip' => '/^(?:28\\d{5}|501\\d{4})$/',
19            'emergency' => '/^(?:100|911)$/',
20        ],
21        'possible' => [
22            'general' => '/^\\d{7}$/',
23            'emergency' => '/^\\d{3}$/',
24        ],
25    ],
26];
27