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' => '886',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[2-9]\\d{7,8}$/',
14            'fixed' => '/^[2-8]\\d{7,8}$/',
15            'mobile' => '/^9\\d{8}$/',
16            'tollfree' => '/^800\\d{6}$/',
17            'premium' => '/^900\\d{6}$/',
18            'emergency' => '/^11[029]$/',
19        ],
20        'possible' => [
21            'general' => '/^\\d{8,9}$/',
22            'fixed' => '/^\\d{8,9}$/',
23            'mobile' => '/^\\d{9}$/',
24            'tollfree' => '/^\\d{9}$/',
25            'premium' => '/^\\d{9}$/',
26            'emergency' => '/^\\d{3}$/',
27        ],
28    ],
29];
30