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' => '971',
11    'patterns' => [
12        'national' => [
13            'general' => '/^(?:[2-79]\d{7,8}|800\d{2,9})$/',
14            'fixed' => '/^[2-4679][2-8]\d{6}$/',
15            'mobile' => '/^5[0256]\d{7}$/',
16            'tollfree' => '/^(?:400\d{6}|800\d{2,9})$/',
17            'premium' => '/^900[02]\d{5}$/',
18            'shared' => '/^700[05]\d{5}$/',
19            'uan' => '/^600[25]\d{5}$/',
20            'emergency' => '/^(?:112|99[789])$/',
21        ],
22        'possible' => [
23            'general' => '/^\d{5,12}$/',
24            'fixed' => '/^\d{7,8}$/',
25            'mobile' => '/^\d{9}$/',
26            'tollfree' => '/^\d{5,12}$/',
27            'premium' => '/^\d{9}$/',
28            'shared' => '/^\d{9}$/',
29            'uan' => '/^\d{9}$/',
30            'emergency' => '/^\d{3}$/',
31        ],
32    ],
33];
34