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' => '84',
11    'patterns' => [
12        'national' => [
13            'general' => '/^(?:[17]\\d{6,9}|[2-69]\\d{7,9}|8\\d{6,8})$/',
14            'fixed' => '/^(?:2(?:[025-79]|1[0189]|[348][01])|3(?:[0136-9]|[25][01])|4\\d|5(?:[01][01]|[2-9])|6(?:[0-46-8]|5[01])|7(?:[02-79]|[18][01])|8[1-9])\\d{7}$/',
15            'mobile' => '/^(?:9\\d|1(?:2\\d|6[2-9]|8[68]|99))\\d{7}$/',
16            'tollfree' => '/^1800\\d{4,6}$/',
17            'premium' => '/^1900\\d{4,6}$/',
18            'uan' => '/^(?:[17]99\\d{4}|69\\d{5,6}|80\\d{5})$/',
19            'emergency' => '/^11[345]$/',
20        ],
21        'possible' => [
22            'general' => '/^\\d{7,10}$/',
23            'fixed' => '/^\\d{9,10}$/',
24            'mobile' => '/^\\d{9,10}$/',
25            'tollfree' => '/^\\d{8,10}$/',
26            'premium' => '/^\\d{8,10}$/',
27            'uan' => '/^\\d{7,8}$/',
28            'emergency' => '/^\\d{3}$/',
29        ],
30    ],
31];
32