[Intl] Removed obsolete classes

This commit is contained in:
Bernhard Schussek 2013-04-20 16:41:53 +02:00
parent 51a3561ed4
commit 9551932e3b
4 changed files with 0 additions and 104 deletions

View File

@ -1,26 +0,0 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* 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 <bschussek@gmail.com>
*/
class StubCurrencyBundle extends CurrencyBundle
{
public function __construct(StructuredBundleReaderInterface $reader)
{
parent::__construct(realpath(__DIR__ . '/../../Resources/data/curr'), $reader);
}
}

View File

@ -1,26 +0,0 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* 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 <bschussek@gmail.com>
*/
class StubLanguageBundle extends LanguageBundle
{
public function __construct(StructuredBundleReaderInterface $reader)
{
parent::__construct(realpath(__DIR__ . '/../../Resources/data/lang'), $reader);
}
}

View File

@ -1,26 +0,0 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* 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 <bschussek@gmail.com>
*/
class StubLocaleBundle extends LocaleBundle
{
public function __construct(StructuredBundleReaderInterface $reader)
{
parent::__construct(realpath(__DIR__ . '/../../Resources/data/locales'), $reader);
}
}

View File

@ -1,26 +0,0 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* 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 <bschussek@gmail.com>
*/
class StubRegionBundle extends RegionBundle
{
public function __construct(StructuredBundleReaderInterface $reader)
{
parent::__construct(realpath(__DIR__ . '/../../Resources/data/region'), $reader);
}
}