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' => '299',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[1-689]\\d{5}$/',
14            'fixed' => '/^(?:19|3[1-6]|6[14689]|8[14-79]|9\\d)\\d{4}$/',
15            'mobile' => '/^[245][2-9]\\d{4}$/',
16            'tollfree' => '/^80\\d{4}$/',
17            'voip' => '/^3[89]\\d{4}$/',
18            'emergency' => '/^112$/',
19        ],
20        'possible' => [
21            'general' => '/^\\d{6}$/',
22            'emergency' => '/^\\d{3}$/',
23        ],
24    ],
25];
26