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' => '371',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[2689]\\d{7}$/',
14            'fixed' => '/^6[3-8]\\d{6}$/',
15            'mobile' => '/^2\\d{7}$/',
16            'tollfree' => '/^80\\d{6}$/',
17            'premium' => '/^90\\d{6}$/',
18            'shared' => '/^81\\d{6}$/',
19            'emergency' => '/^(?:0[123]|112)$/',
20        ],
21        'possible' => [
22            'general' => '/^\\d{8}$/',
23            'emergency' => '/^\\d{2,3}$/',
24        ],
25    ],
26];
27