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' => '351',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[2-46-9]\\d{8}$/',
14            'fixed' => '/^2(?:[12]\\d|[35][1-689]|4[1-59]|6[1-35689]|7[1-9]|8[1-69]|9[1256])\\d{6}$/',
15            'mobile' => '/^9(?:[136]\\d{2}|2[0-79]\\d|480)\\d{5}$/',
16            'tollfree' => '/^80[02]\\d{6}$/',
17            'premium' => '/^76(?:0[1-57]|1[2-47]|2[237])\\d{5}$/',
18            'shared' => '/^80(?:8\\d|9[1579])\\d{5}$/',
19            'personal' => '/^884[128]\\d{5}$/',
20            'voip' => '/^30\\d{7}$/',
21            'uan' => '/^70(?:7\\d|8[17])\\d{5}$/',
22            'emergency' => '/^112$/',
23        ],
24        'possible' => [
25            'general' => '/^\\d{9}$/',
26            'emergency' => '/^\\d{3}$/',
27        ],
28    ],
29];
30