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' => '358',
11    'patterns' => [
12        'national' => [
13            'general' => '/^(?:[135]\\d{5,9}|[27]\\d{4,9}|4\\d{5,10}|6\\d{7,8}|8\\d{6,9})$/',
14            'fixed' => '/^18[1-8]\\d{3,9}$/',
15            'mobile' => '/^(?:4\\d{5,10}|50\\d{4,8})$/',
16            'tollfree' => '/^800\\d{4,7}$/',
17            'premium' => '/^[67]00\\d{5,6}$/',
18            'uan' => '/^(?:[13]0\\d{4,8}|2(?:0(?:[016-8]\\d{3,7}|[2-59]\\d{2,7})|9\\d{4,8})|60(?:[12]\\d{5,6}|6\\d{7})|7(?:1\\d{7}|3\\d{8}|5[03-9]\\d{2,7}))$/',
19            'emergency' => '/^112$/',
20        ],
21        'possible' => [
22            'general' => '/^\\d{5,12}$/',
23            'fixed' => '/^\\d{6,12}$/',
24            'mobile' => '/^\\d{6,11}$/',
25            'tollfree' => '/^\\d{7,10}$/',
26            'premium' => '/^\\d{8,9}$/',
27            'uan' => '/^\\d{5,10}$/',
28            'emergency' => '/^\\d{3}$/',
29        ],
30    ],
31];
32