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' => '599',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[347]\\d{6}$/',
14            'fixed' => '/^(?:318[023]|416[0239]|7(?:1[578]|50)\\d)\\d{3}$/',
15            'mobile' => '/^(?:318[1456]|416[15-8]|7(?:0[01]|[89]\\d)\\d)\\d{3}$/',
16            'emergency' => '/^(?:112|911)$/',
17        ],
18        'possible' => [
19            'general' => '/^\\d{7}$/',
20            'emergency' => '/^\\d{3}$/',
21        ],
22    ],
23];
24