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' => '53',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[2-57]\\d{5,7}$/',
14            'fixed' => '/^(?:2[1-4]\\d{5,6}|3(?:1\\d{6}|[23]\\d{4,6})|4(?:[125]\\d{5,6}|[36]\\d{6}|[78]\\d{4,6})|7\\d{6,7})$/',
15            'mobile' => '/^5\\d{7}$/',
16            'shortcode' => '/^1(?:1(?:6111|8)|40)$/',
17            'emergency' => '/^10[456]$/',
18        ],
19        'possible' => [
20            'general' => '/^\\d{4,8}$/',
21            'mobile' => '/^\\d{8}$/',
22            'shortcode' => '/^\\d{3,6}$/',
23            'emergency' => '/^\\d{3}$/',
24        ],
25    ],
26];
27