Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/RS.php')
-rw-r--r--vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/RS.php34
1 files changed, 0 insertions, 34 deletions
diff --git a/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/RS.php b/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/RS.php
deleted file mode 100644
index f37422d..0000000
--- a/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/RS.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-/**
- * Zend Framework (http://framework.zend.com/)
- *
- * @link http://github.com/zendframework/zf2 for the canonical source repository
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
-
-return array(
- 'code' => '381',
- 'patterns' => array(
- 'national' => array(
- 'general' => '/^[126-9]\\d{4,11}|3(?:[0-79]\\d{3,10}|8[2-9]\\d{2,9})$/',
- 'fixed' => '/^(?:1(?:[02-9][2-9]|1[1-9])\\d|2(?:[0-24-7][2-9]\\d|[389](?:0[2-9]|[2-9]\\d))|3(?:[0-8][2-9]\\d|9(?:[2-9]\\d|0[2-9])))\\d{3,8}$/',
- 'mobile' => '/^6(?:[0-689]|7\\d)\\d{6,7}$/',
- 'tollfree' => '/^800\\d{3,9}$/',
- 'premium' => '/^(?:90[0169]|78\\d)\\d{3,7}$/',
- 'uan' => '/^7[06]\\d{4,10}$/',
- 'shortcode' => '/^1(?:1(?:[013-9]|\\d(2,4))|[89]\\d{1,4})$/',
- 'emergency' => '/^112|9[234]$/',
- ),
- 'possible' => array(
- 'general' => '/^\\d{5,12}$/',
- 'fixed' => '/^\\d{5,12}$/',
- 'mobile' => '/^\\d{8,10}$/',
- 'tollfree' => '/^\\d{6,12}$/',
- 'premium' => '/^\\d{6,12}$/',
- 'uan' => '/^\\d{6,12}$/',
- 'shortcode' => '/^\\d{3,6}$/',
- 'emergency' => '/^\\d{2,3}$/',
- ),
- ),
-);