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' => '974',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[2-8]\\d{6,7}$/',
14            'fixed' => '/^4[04]\\d{6}$/',
15            'mobile' => '/^[3567]\\d{7}$/',
16            'pager' => '/^2(?:[12]\\d|61)\\d{4}$/',
17            'tollfree' => '/^800\\d{4}$/',
18            'shortcode' => '/^(?:1|20|9[27]\\d)\\d{2}$/',
19            'emergency' => '/^999$/',
20        ],
21        'possible' => [
22            'general' => '/^\\d{7,8}$/',
23            'pager' => '/^\\d{7}$/',
24            'shortcode' => '/^\\d{3,4}$/',
25            'emergency' => '/^\\d{3}$/',
26        ],
27    ],
28];
29