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