diff options
author | RedMatrix <info@friendica.com> | 2014-12-31 10:43:19 +1100 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2014-12-31 10:43:19 +1100 |
commit | 4f35efa0bad4ae6489b63f3eebafe6542d654094 (patch) | |
tree | fdf7577c0b602a1f8b86401572e53cfe90cf2474 /library/intl/src/Country/CountryRepositoryInterface.php | |
parent | ae9d08267c632cae36a4ebd34c2077fd0051e0e7 (diff) | |
download | volse-hubzilla-4f35efa0bad4ae6489b63f3eebafe6542d654094.tar.gz volse-hubzilla-4f35efa0bad4ae6489b63f3eebafe6542d654094.tar.bz2 volse-hubzilla-4f35efa0bad4ae6489b63f3eebafe6542d654094.zip |
Revert "Language names via intl library."
Diffstat (limited to 'library/intl/src/Country/CountryRepositoryInterface.php')
-rw-r--r-- | library/intl/src/Country/CountryRepositoryInterface.php | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/library/intl/src/Country/CountryRepositoryInterface.php b/library/intl/src/Country/CountryRepositoryInterface.php deleted file mode 100644 index ae1cbd0c9..000000000 --- a/library/intl/src/Country/CountryRepositoryInterface.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -namespace CommerceGuys\Intl\Country; - -/** - * Country repository interface. - */ -interface CountryRepositoryInterface -{ - /** - * Returns a country instance matching the provided country code. - * - * @param string $countryCode The country code. - * @param string $locale The locale (i.e. fr-FR). - * @param string $fallbackLocale A fallback locale (i.e "en"). - * - * @return CountryInterface - */ - public function get($countryCode, $locale = null, $fallbackLocale = null); - - /** - * Returns all available country instances. - * - * @param string $locale The locale (i.e. fr-FR). - * @param string $fallbackLocale A fallback locale (i.e "en"). - * - * @return array An array of countries implementing the CountryInterface, - * keyed by country code. - */ - public function getAll($locale = null, $fallbackLocale = null); -} |