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/AM.php')
-rw-r--r--vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AM.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AM.php b/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AM.php
deleted file mode 100644
index 03b04fb..0000000
--- a/vendor/zendframework/zend-i18n/src/Validator/PhoneNumber/AM.php
+++ /dev/null
@@ -1,35 +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' => '374',
- 'patterns' => array(
- 'national' => array(
- 'general' => '/^[1-9]\d{7}$/',
- 'fixed' => '/^(?:10\d|2(?:2[2-46]|3[1-8]|4[2-69]|5[2-7]|6[1-9]|8[1-7])|3[12]2|47\d)\d{5}$/',
- 'mobile' => '/^(?:55|77|9[1-9])\d{6}$/',
- 'tollfree' => '/^800\d{5}$/',
- 'premium' => '/^90[016]\d{5}$/',
- 'shared' => '/^80[1-4]\d{5}$/',
- 'voip' => '/^60[2-6]\d{5}$/',
- 'shortcode' => '/^8[1-7]\d{2}|1(?:0[04-9]|[1-9]\d)$/',
- 'emergency' => '/^10[123]$/',
- ),
- 'possible' => array(
- 'general' => '/^\d{5,8}$/',
- 'mobile' => '/^\d{8}$/',
- 'tollfree' => '/^\d{8}$/',
- 'premium' => '/^\d{8}$/',
- 'shared' => '/^\d{8}$/',
- 'voip' => '/^\d{8}$/',
- 'shortcode' => '/^\d{3,4}$/',
- 'emergency' => '/^\d{3}$/',
- ),
- ),
-);