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' => '1',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[5789]\\d{9}$/',
14            'fixed' => '/^758(?:234|4(?:30|5[0-9]|6[2-9]|8[0-2])|572|638|758)\\d{4}$/',
15            'mobile' => '/^758(?:28[4-7]|384|4(?:6[01]|8[4-9])|5(?:1[89]|20|84)|7(?:1[2-9]|2[0-6]))\\d{4}$/',
16            'tollfree' => '/^8(?:00|55|66|77|88)[2-9]\\d{6}$/',
17            'premium' => '/^900[2-9]\\d{6}$/',
18            'personal' => '/^5(?:00|33|44)[2-9]\\d{6}$/',
19            'emergency' => '/^9(?:11|99)$/',
20        ],
21        'possible' => [
22            'general' => '/^\\d{7}(?:\\d{3})?$/',
23            'mobile' => '/^\\d{10}$/',
24            'tollfree' => '/^\\d{10}$/',
25            'premium' => '/^\\d{10}$/',
26            'personal' => '/^\\d{10}$/',
27            'emergency' => '/^\\d{3}$/',
28        ],
29    ],
30];
31