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' => '676',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[02-8]\\d{4,6}$/',
14            'fixed' => '/^(?:2\\d|3[1-8]|4[1-4]|[56]0|7[0149]|8[05])\\d{3}$/',
15            'mobile' => '/^(?:7[578]|8[7-9])\\d{5}$/',
16            'tollfree' => '/^0800\\d{3}$/',
17            'emergency' => '/^9(?:11|22|33|99)$/',
18        ],
19        'possible' => [
20            'general' => '/^\\d{5,7}$/',
21            'fixed' => '/^\\d{5}$/',
22            'mobile' => '/^\\d{7}$/',
23            'tollfree' => '/^\\d{7}$/',
24            'emergency' => '/^\\d{3}$/',
25        ],
26    ],
27];
28