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' => '504',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[237-9]\\d{7}$/',
14            'fixed' => '/^2(?:2(?:0[019]|1[1-36]|[23]\\d|4[056]|5[57]|8[0146-9]|9[012])|4(?:2|3-59]|3[13-689]|4[0-68]|5[1-35])|5(?:4[3-5]|5\\d|6[56]|74)|6(?:4[0-378]|[56]\\d|[78][0-8]|9[01])|7(?:6[46-9]|7[02-9]|8[34])|8(?:79|8[0-35789]|9[1-57-9]))\\d{4}$/',
15            'mobile' => '/^[37-9]\\d{7}$/',
16            'emergency' => '/^199$/',
17        ],
18        'possible' => [
19            'general' => '/^\\d{8}$/',
20            'emergency' => '/^\\d{3}$/',
21        ],
22    ],
23];
24