From 46b77928f746a4231d064774b5b67fd892c7ce86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Sun, 4 Aug 2013 17:50:34 +0200 Subject: rm vendor --- .../symfony/icu/Symfony/Component/Icu/IcuData.php | 66 ---------------------- 1 file changed, 66 deletions(-) delete mode 100644 vendor/symfony/icu/Symfony/Component/Icu/IcuData.php (limited to 'vendor/symfony/icu/Symfony/Component/Icu/IcuData.php') diff --git a/vendor/symfony/icu/Symfony/Component/Icu/IcuData.php b/vendor/symfony/icu/Symfony/Component/Icu/IcuData.php deleted file mode 100644 index 478a2f0e..00000000 --- a/vendor/symfony/icu/Symfony/Component/Icu/IcuData.php +++ /dev/null @@ -1,66 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\Icu; - -use Symfony\Component\Intl\ResourceBundle\Reader\PhpBundleReader; - -/** - * @author Bernhard Schussek - */ -class IcuData -{ - /** - * Returns the version of the bundled ICU data. - * - * @return string The version string. - */ - public static function getVersion() - { - return trim(file_get_contents(__DIR__ . '/Resources/data/version.txt')); - } - - /** - * Returns whether the ICU data is stubbed. - * - * @return Boolean Returns true if the ICU data is stubbed, false if it is - * loaded from ICU .res files. - */ - public static function isStubbed() - { - return true; - } - - /** - * Returns the path to the directory where the resource bundles are stored. - * - * @return string The absolute path to the resource directory. - */ - public static function getResourceDirectory() - { - return realpath(__DIR__ . '/Resources/data'); - } - - /** - * Returns a reader for reading resource bundles in this component. - * - * @return \Symfony\Component\Intl\ResourceBundle\Reader\BundleReaderInterface - */ - public static function getBundleReader() - { - return new PhpBundleReader(); - } - - /** - * This class must not be instantiated. - */ - private function __construct() {} -} -- cgit v1.2.3