From 9551932e3bbd926550e7f370ce10bd5464669d27 Mon Sep 17 00:00:00 2001 From: Bernhard Schussek Date: Sat, 20 Apr 2013 16:41:53 +0200 Subject: [PATCH] [Intl] Removed obsolete classes --- .../Stub/StubCurrencyBundle.php | 26 ------------------- .../Stub/StubLanguageBundle.php | 26 ------------------- .../ResourceBundle/Stub/StubLocaleBundle.php | 26 ------------------- .../ResourceBundle/Stub/StubRegionBundle.php | 26 ------------------- 4 files changed, 104 deletions(-) delete mode 100644 src/Symfony/Component/Intl/ResourceBundle/Stub/StubCurrencyBundle.php delete mode 100644 src/Symfony/Component/Intl/ResourceBundle/Stub/StubLanguageBundle.php delete mode 100644 src/Symfony/Component/Intl/ResourceBundle/Stub/StubLocaleBundle.php delete mode 100644 src/Symfony/Component/Intl/ResourceBundle/Stub/StubRegionBundle.php diff --git a/src/Symfony/Component/Intl/ResourceBundle/Stub/StubCurrencyBundle.php b/src/Symfony/Component/Intl/ResourceBundle/Stub/StubCurrencyBundle.php deleted file mode 100644 index 52c8454d8b..0000000000 --- a/src/Symfony/Component/Intl/ResourceBundle/Stub/StubCurrencyBundle.php +++ /dev/null @@ -1,26 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\Intl\ResourceBundle\Stub; - -use Symfony\Component\Intl\ResourceBundle\CurrencyBundle; -use Symfony\Component\Intl\ResourceBundle\Reader\StructuredBundleReaderInterface; - -/** - * @author Bernhard Schussek - */ -class StubCurrencyBundle extends CurrencyBundle -{ - public function __construct(StructuredBundleReaderInterface $reader) - { - parent::__construct(realpath(__DIR__ . '/../../Resources/data/curr'), $reader); - } -} diff --git a/src/Symfony/Component/Intl/ResourceBundle/Stub/StubLanguageBundle.php b/src/Symfony/Component/Intl/ResourceBundle/Stub/StubLanguageBundle.php deleted file mode 100644 index faf58c303f..0000000000 --- a/src/Symfony/Component/Intl/ResourceBundle/Stub/StubLanguageBundle.php +++ /dev/null @@ -1,26 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\Intl\ResourceBundle\Stub; - -use Symfony\Component\Intl\ResourceBundle\LanguageBundle; -use Symfony\Component\Intl\ResourceBundle\Reader\StructuredBundleReaderInterface; - -/** - * @author Bernhard Schussek - */ -class StubLanguageBundle extends LanguageBundle -{ - public function __construct(StructuredBundleReaderInterface $reader) - { - parent::__construct(realpath(__DIR__ . '/../../Resources/data/lang'), $reader); - } -} diff --git a/src/Symfony/Component/Intl/ResourceBundle/Stub/StubLocaleBundle.php b/src/Symfony/Component/Intl/ResourceBundle/Stub/StubLocaleBundle.php deleted file mode 100644 index f3ba9ce4f5..0000000000 --- a/src/Symfony/Component/Intl/ResourceBundle/Stub/StubLocaleBundle.php +++ /dev/null @@ -1,26 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\Intl\ResourceBundle\Stub; - -use Symfony\Component\Intl\ResourceBundle\LocaleBundle; -use Symfony\Component\Intl\ResourceBundle\Reader\StructuredBundleReaderInterface; - -/** - * @author Bernhard Schussek - */ -class StubLocaleBundle extends LocaleBundle -{ - public function __construct(StructuredBundleReaderInterface $reader) - { - parent::__construct(realpath(__DIR__ . '/../../Resources/data/locales'), $reader); - } -} diff --git a/src/Symfony/Component/Intl/ResourceBundle/Stub/StubRegionBundle.php b/src/Symfony/Component/Intl/ResourceBundle/Stub/StubRegionBundle.php deleted file mode 100644 index 49f747e7de..0000000000 --- a/src/Symfony/Component/Intl/ResourceBundle/Stub/StubRegionBundle.php +++ /dev/null @@ -1,26 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\Intl\ResourceBundle\Stub; - -use Symfony\Component\Intl\ResourceBundle\Reader\StructuredBundleReaderInterface; -use Symfony\Component\Intl\ResourceBundle\RegionBundle; - -/** - * @author Bernhard Schussek - */ -class StubRegionBundle extends RegionBundle -{ - public function __construct(StructuredBundleReaderInterface $reader) - { - parent::__construct(realpath(__DIR__ . '/../../Resources/data/region'), $reader); - } -}