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' => '678',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[2-57-9]\\d{4,6}$/',
14            'fixed' => '/^(?:2[2-9]\\d|3(?:[5-7]\\d|8[0-8])|48[4-9]|88\\d)\\d{2}$/',
15            'mobile' => '/^(?:5(?:7[2-5]|[3-69]\\d)|7[013-7]\\d)\\d{4}$/',
16            'uan' => '/^(?:3[03]\\d{3}|900\\d{4})$/',
17            'emergency' => '/^112$/',
18        ],
19        'possible' => [
20            'general' => '/^\\d{5,7}$/',
21            'fixed' => '/^\\d{5}$/',
22            'mobile' => '/^\\d{7}$/',
23            'uan' => '/^\\d{5,7}$/',
24            'emergency' => '/^\\d{3}$/',
25        ],
26    ],
27];
28