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); - } -}