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' => '252',
11    'patterns' => [
12        'national' => [
13            'general' => '/^[1-79]\\d{6,8}$/',
14            'fixed' => '/^(?:[134]\\d|2[0-79]|5[57-9])\\d{5}$/',
15            'mobile' => '/^(?:15\\d|2(?:4\\d|8)|6[17-9]?\\d{2}|7\\d{2}|9[01]\\d)\\d{5}$/',
16        ],
17        'possible' => [
18            'general' => '/^\\d{7,9}$/',
19            'fixed' => '/^\\d{7}$/',
20        ],
21    ],
22];
23