├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── ConfigProvider.php ├── Exception ├── ExceptionInterface.php ├── ExtensionNotLoadedException.php ├── InvalidArgumentException.php ├── OutOfBoundsException.php ├── ParseException.php ├── RangeException.php └── RuntimeException.php ├── Filter ├── AbstractLocale.php ├── Alnum.php ├── Alpha.php ├── NumberFormat.php └── NumberParse.php ├── Module.php ├── Translator ├── Loader │ ├── AbstractFileLoader.php │ ├── FileLoaderInterface.php │ ├── Gettext.php │ ├── Ini.php │ ├── PhpArray.php │ ├── PhpMemoryArray.php │ └── RemoteLoaderInterface.php ├── LoaderPluginManager.php ├── LoaderPluginManagerFactory.php ├── Plural │ ├── Parser.php │ ├── Rule.php │ └── Symbol.php ├── TextDomain.php ├── Translator.php ├── TranslatorAwareInterface.php ├── TranslatorAwareTrait.php ├── TranslatorInterface.php └── TranslatorServiceFactory.php ├── Validator ├── Alnum.php ├── Alpha.php ├── DateTime.php ├── Float.php ├── Int.php ├── IsFloat.php ├── IsInt.php ├── PhoneNumber.php ├── PhoneNumber │ ├── AC.php │ ├── AD.php │ ├── AE.php │ ├── AF.php │ ├── AG.php │ ├── AI.php │ ├── AL.php │ ├── AM.php │ ├── AO.php │ ├── AR.php │ ├── AS.php │ ├── AT.php │ ├── AU.php │ ├── AW.php │ ├── AX.php │ ├── AZ.php │ ├── BA.php │ ├── BB.php │ ├── BD.php │ ├── BE.php │ ├── BF.php │ ├── BG.php │ ├── BH.php │ ├── BI.php │ ├── BJ.php │ ├── BL.php │ ├── BM.php │ ├── BN.php │ ├── BO.php │ ├── BQ.php │ ├── BR.php │ ├── BS.php │ ├── BT.php │ ├── BW.php │ ├── BY.php │ ├── BZ.php │ ├── CA.php │ ├── CC.php │ ├── CD.php │ ├── CF.php │ ├── CG.php │ ├── CH.php │ ├── CI.php │ ├── CK.php │ ├── CL.php │ ├── CM.php │ ├── CN.php │ ├── CO.php │ ├── CR.php │ ├── CU.php │ ├── CV.php │ ├── CW.php │ ├── CX.php │ ├── CY.php │ ├── CZ.php │ ├── DE.php │ ├── DJ.php │ ├── DK.php │ ├── DM.php │ ├── DO.php │ ├── DZ.php │ ├── EC.php │ ├── EE.php │ ├── EG.php │ ├── EH.php │ ├── ER.php │ ├── ES.php │ ├── ET.php │ ├── FI.php │ ├── FJ.php │ ├── FK.php │ ├── FM.php │ ├── FO.php │ ├── FR.php │ ├── GA.php │ ├── GB.php │ ├── GD.php │ ├── GE.php │ ├── GF.php │ ├── GG.php │ ├── GH.php │ ├── GI.php │ ├── GL.php │ ├── GM.php │ ├── GN.php │ ├── GP.php │ ├── GQ.php │ ├── GR.php │ ├── GT.php │ ├── GU.php │ ├── GW.php │ ├── GY.php │ ├── HK.php │ ├── HN.php │ ├── HR.php │ ├── HT.php │ ├── HU.php │ ├── ID.php │ ├── IE.php │ ├── IL.php │ ├── IM.php │ ├── IN.php │ ├── IO.php │ ├── IQ.php │ ├── IR.php │ ├── IS.php │ ├── IT.php │ ├── JE.php │ ├── JM.php │ ├── JO.php │ ├── JP.php │ ├── KE.php │ ├── KG.php │ ├── KH.php │ ├── KI.php │ ├── KM.php │ ├── KN.php │ ├── KP.php │ ├── KR.php │ ├── KW.php │ ├── KY.php │ ├── KZ.php │ ├── LA.php │ ├── LB.php │ ├── LC.php │ ├── LI.php │ ├── LK.php │ ├── LR.php │ ├── LS.php │ ├── LT.php │ ├── LU.php │ ├── LV.php │ ├── LY.php │ ├── MA.php │ ├── MC.php │ ├── MD.php │ ├── ME.php │ ├── MF.php │ ├── MG.php │ ├── MH.php │ ├── MK.php │ ├── ML.php │ ├── MM.php │ ├── MN.php │ ├── MO.php │ ├── MP.php │ ├── MQ.php │ ├── MR.php │ ├── MS.php │ ├── MT.php │ ├── MU.php │ ├── MV.php │ ├── MW.php │ ├── MX.php │ ├── MY.php │ ├── MZ.php │ ├── NA.php │ ├── NC.php │ ├── NE.php │ ├── NF.php │ ├── NG.php │ ├── NI.php │ ├── NL.php │ ├── NO.php │ ├── NP.php │ ├── NR.php │ ├── NU.php │ ├── NZ.php │ ├── OM.php │ ├── PA.php │ ├── PE.php │ ├── PF.php │ ├── PG.php │ ├── PH.php │ ├── PK.php │ ├── PL.php │ ├── PM.php │ ├── PR.php │ ├── PS.php │ ├── PT.php │ ├── PW.php │ ├── PY.php │ ├── QA.php │ ├── RE.php │ ├── RO.php │ ├── RS.php │ ├── RU.php │ ├── RW.php │ ├── SA.php │ ├── SB.php │ ├── SC.php │ ├── SD.php │ ├── SE.php │ ├── SG.php │ ├── SH.php │ ├── SI.php │ ├── SJ.php │ ├── SK.php │ ├── SL.php │ ├── SM.php │ ├── SN.php │ ├── SO.php │ ├── SR.php │ ├── SS.php │ ├── ST.php │ ├── SV.php │ ├── SX.php │ ├── SY.php │ ├── SZ.php │ ├── TC.php │ ├── TD.php │ ├── TG.php │ ├── TH.php │ ├── TJ.php │ ├── TK.php │ ├── TL.php │ ├── TM.php │ ├── TN.php │ ├── TO.php │ ├── TR.php │ ├── TT.php │ ├── TV.php │ ├── TW.php │ ├── TZ.php │ ├── UA.php │ ├── UG.php │ ├── US.php │ ├── UY.php │ ├── UZ.php │ ├── VA.php │ ├── VC.php │ ├── VE.php │ ├── VG.php │ ├── VI.php │ ├── VN.php │ ├── VU.php │ ├── WF.php │ ├── WS.php │ ├── XK.php │ ├── YE.php │ ├── YT.php │ ├── ZA.php │ ├── ZM.php │ └── ZW.php └── PostCode.php └── View ├── Helper ├── AbstractTranslatorHelper.php ├── CurrencyFormat.php ├── DateFormat.php ├── NumberFormat.php ├── Plural.php ├── Translate.php └── TranslatePlural.php ├── HelperConfig.php └── HelperTrait.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/composer.json -------------------------------------------------------------------------------- /src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/ExtensionNotLoadedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Exception/ExtensionNotLoadedException.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/OutOfBoundsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Exception/OutOfBoundsException.php -------------------------------------------------------------------------------- /src/Exception/ParseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Exception/ParseException.php -------------------------------------------------------------------------------- /src/Exception/RangeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Exception/RangeException.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Filter/AbstractLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Filter/AbstractLocale.php -------------------------------------------------------------------------------- /src/Filter/Alnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Filter/Alnum.php -------------------------------------------------------------------------------- /src/Filter/Alpha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Filter/Alpha.php -------------------------------------------------------------------------------- /src/Filter/NumberFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Filter/NumberFormat.php -------------------------------------------------------------------------------- /src/Filter/NumberParse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Filter/NumberParse.php -------------------------------------------------------------------------------- /src/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Module.php -------------------------------------------------------------------------------- /src/Translator/Loader/AbstractFileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/Loader/AbstractFileLoader.php -------------------------------------------------------------------------------- /src/Translator/Loader/FileLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/Loader/FileLoaderInterface.php -------------------------------------------------------------------------------- /src/Translator/Loader/Gettext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/Loader/Gettext.php -------------------------------------------------------------------------------- /src/Translator/Loader/Ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/Loader/Ini.php -------------------------------------------------------------------------------- /src/Translator/Loader/PhpArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/Loader/PhpArray.php -------------------------------------------------------------------------------- /src/Translator/Loader/PhpMemoryArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/Loader/PhpMemoryArray.php -------------------------------------------------------------------------------- /src/Translator/Loader/RemoteLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/Loader/RemoteLoaderInterface.php -------------------------------------------------------------------------------- /src/Translator/LoaderPluginManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/LoaderPluginManager.php -------------------------------------------------------------------------------- /src/Translator/LoaderPluginManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/LoaderPluginManagerFactory.php -------------------------------------------------------------------------------- /src/Translator/Plural/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/Plural/Parser.php -------------------------------------------------------------------------------- /src/Translator/Plural/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/Plural/Rule.php -------------------------------------------------------------------------------- /src/Translator/Plural/Symbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/Plural/Symbol.php -------------------------------------------------------------------------------- /src/Translator/TextDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/TextDomain.php -------------------------------------------------------------------------------- /src/Translator/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/Translator.php -------------------------------------------------------------------------------- /src/Translator/TranslatorAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/TranslatorAwareInterface.php -------------------------------------------------------------------------------- /src/Translator/TranslatorAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/TranslatorAwareTrait.php -------------------------------------------------------------------------------- /src/Translator/TranslatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/TranslatorInterface.php -------------------------------------------------------------------------------- /src/Translator/TranslatorServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Translator/TranslatorServiceFactory.php -------------------------------------------------------------------------------- /src/Validator/Alnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/Alnum.php -------------------------------------------------------------------------------- /src/Validator/Alpha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/Alpha.php -------------------------------------------------------------------------------- /src/Validator/DateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/DateTime.php -------------------------------------------------------------------------------- /src/Validator/Float.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/Float.php -------------------------------------------------------------------------------- /src/Validator/Int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/Int.php -------------------------------------------------------------------------------- /src/Validator/IsFloat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/IsFloat.php -------------------------------------------------------------------------------- /src/Validator/IsInt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/IsInt.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AC.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AD.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AF.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AG.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AI.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AL.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AO.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AS.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AT.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AU.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AW.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AX.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/AZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/AZ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BA.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BB.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BD.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BF.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BG.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BH.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BI.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BJ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BJ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BL.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BN.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BO.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BQ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BS.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BT.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BW.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BY.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/BZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/BZ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CA.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CC.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CD.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CF.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CG.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CH.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CI.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CK.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CL.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CN.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CO.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CU.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CV.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CW.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CX.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CY.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/CZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/CZ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/DE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/DE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/DJ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/DJ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/DK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/DK.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/DM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/DM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/DO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/DO.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/DZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/DZ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/EC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/EC.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/EE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/EE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/EG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/EG.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/EH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/EH.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/ER.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/ER.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/ES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/ES.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/ET.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/ET.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/FI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/FI.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/FJ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/FJ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/FK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/FK.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/FM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/FM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/FO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/FO.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/FR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/FR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GA.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GB.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GD.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GF.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GG.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GH.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GI.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GL.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GN.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GP.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GQ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GT.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GU.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GW.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/GY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/GY.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/HK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/HK.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/HN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/HN.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/HR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/HR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/HT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/HT.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/HU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/HU.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/ID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/ID.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/IE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/IE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/IL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/IL.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/IM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/IM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/IN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/IN.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/IO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/IO.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/IQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/IQ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/IR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/IR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/IS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/IS.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/IT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/IT.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/JE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/JE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/JM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/JM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/JO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/JO.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/JP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/JP.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/KE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/KE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/KG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/KG.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/KH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/KH.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/KI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/KI.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/KM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/KM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/KN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/KN.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/KP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/KP.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/KR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/KR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/KW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/KW.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/KY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/KY.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/KZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/KZ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/LA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/LA.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/LB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/LB.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/LC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/LC.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/LI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/LI.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/LK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/LK.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/LR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/LR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/LS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/LS.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/LT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/LT.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/LU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/LU.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/LV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/LV.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/LY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/LY.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MA.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MC.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MD.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/ME.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/ME.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MF.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MG.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MH.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MK.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/ML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/ML.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MN.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MO.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MP.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MQ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MS.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MT.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MU.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MV.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MW.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MX.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MY.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/MZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/MZ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/NA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/NA.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/NC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/NC.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/NE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/NE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/NF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/NF.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/NG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/NG.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/NI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/NI.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/NL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/NL.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/NO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/NO.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/NP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/NP.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/NR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/NR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/NU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/NU.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/NZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/NZ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/OM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/OM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/PA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/PA.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/PE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/PE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/PF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/PF.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/PG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/PG.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/PH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/PH.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/PK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/PK.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/PL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/PL.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/PM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/PM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/PR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/PR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/PS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/PS.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/PT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/PT.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/PW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/PW.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/PY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/PY.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/QA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/QA.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/RE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/RE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/RO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/RO.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/RS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/RS.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/RU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/RU.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/RW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/RW.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SA.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SB.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SC.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SD.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SG.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SH.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SI.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SJ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SJ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SK.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SL.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SN.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SO.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SS.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/ST.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/ST.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SV.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SX.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SY.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/SZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/SZ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TC.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TD.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TG.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TH.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TJ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TJ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TK.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TL.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TN.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TO.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TR.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TT.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TV.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TW.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/TZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/TZ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/UA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/UA.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/UG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/UG.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/US.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/US.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/UY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/UY.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/UZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/UZ.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/VA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/VA.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/VC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/VC.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/VE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/VE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/VG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/VG.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/VI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/VI.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/VN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/VN.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/VU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/VU.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/WF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/WF.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/WS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/WS.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/XK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/XK.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/YE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/YE.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/YT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/YT.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/ZA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/ZA.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/ZM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/ZM.php -------------------------------------------------------------------------------- /src/Validator/PhoneNumber/ZW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PhoneNumber/ZW.php -------------------------------------------------------------------------------- /src/Validator/PostCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/Validator/PostCode.php -------------------------------------------------------------------------------- /src/View/Helper/AbstractTranslatorHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/View/Helper/AbstractTranslatorHelper.php -------------------------------------------------------------------------------- /src/View/Helper/CurrencyFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/View/Helper/CurrencyFormat.php -------------------------------------------------------------------------------- /src/View/Helper/DateFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/View/Helper/DateFormat.php -------------------------------------------------------------------------------- /src/View/Helper/NumberFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/View/Helper/NumberFormat.php -------------------------------------------------------------------------------- /src/View/Helper/Plural.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/View/Helper/Plural.php -------------------------------------------------------------------------------- /src/View/Helper/Translate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/View/Helper/Translate.php -------------------------------------------------------------------------------- /src/View/Helper/TranslatePlural.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/View/Helper/TranslatePlural.php -------------------------------------------------------------------------------- /src/View/HelperConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/View/HelperConfig.php -------------------------------------------------------------------------------- /src/View/HelperTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-i18n/HEAD/src/View/HelperTrait.php --------------------------------------------------------------------------------