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' => '257',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[27]\\d{7}$/',
14            'fixed' => '/^22(?:2[0-7]|[3-5]0)\\d{4}$/',
15            'mobile' => '/^(?:29\\d|7(?:1[1-3]|[4-9]\\d))\\d{5}$/',
16            'emergency' => '/^11[78]$/',
17        ],
18        'possible' => [
19            'general' => '/^\\d{8}$/',
20            'emergency' => '/^\\d{3}$/',
21        ],
22    ],
23];
24