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