diff options
author | RedMatrix <info@friendica.com> | 2014-12-31 10:44:49 +1100 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2014-12-31 10:44:49 +1100 |
commit | a54f168463abd0657d28bd0223b1b6907fd7bdb3 (patch) | |
tree | fdf7577c0b602a1f8b86401572e53cfe90cf2474 /library/intl/tests/DummyRepository.php | |
parent | ae9d08267c632cae36a4ebd34c2077fd0051e0e7 (diff) | |
parent | 4f35efa0bad4ae6489b63f3eebafe6542d654094 (diff) | |
download | volse-hubzilla-a54f168463abd0657d28bd0223b1b6907fd7bdb3.tar.gz volse-hubzilla-a54f168463abd0657d28bd0223b1b6907fd7bdb3.tar.bz2 volse-hubzilla-a54f168463abd0657d28bd0223b1b6907fd7bdb3.zip |
Merge pull request #798 from friendica/revert-794-lang
Revert "Language names via intl library."
Diffstat (limited to 'library/intl/tests/DummyRepository.php')
-rw-r--r-- | library/intl/tests/DummyRepository.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/library/intl/tests/DummyRepository.php b/library/intl/tests/DummyRepository.php deleted file mode 100644 index 0d9ca760b..000000000 --- a/library/intl/tests/DummyRepository.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace CommerceGuys\Intl\Tests; - -use CommerceGuys\Intl\LocaleResolverTrait; - -/** - * Dummy repository used for testing the LocaleResolverTrait. - */ -class DummyRepository -{ - use LocaleResolverTrait; - - public function __construct() - { - $this->definitionPath = 'vfs://resources/dummy/'; - } - - public function runResolveLocale($locale, $fallbackLocale = null) - { - return $this->resolveLocale($locale, $fallbackLocale); - } -} |