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' => '970',
11    'patterns' => [
12        'national' => [
13            'general' => '/^(?:[24589]\\d{7,8}|1(?:[78]\\d{8}|[49]\\d{2,3}))$/',
14            'fixed' => '/^(?:22[234789]|42[45]|82[01458]|92[369])\\d{5}$/',
15            'mobile' => '/^5[69]\\d{7}$/',
16            'tollfree' => '/^1800\\d{6}$/',
17            'premium' => '/^1(?:4|9\\d)\\d{2}$/',
18            'shared' => '/^1700\\d{6}$/',
19        ],
20        'possible' => [
21            'general' => '/^\\d{4,10}$/',
22            'fixed' => '/^\\d{7,8}$/',
23            'mobile' => '/^\\d{9}$/',
24            'tollfree' => '/^\\d{10}$/',
25            'premium' => '/^\\d{4,5}$/',
26            'shared' => '/^\\d{10}$/',
27        ],
28    ],
29];
30