aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/symfony/icu/Symfony/Component/Icu/IcuRegionBundle.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/icu/Symfony/Component/Icu/IcuRegionBundle.php')
-rw-r--r--vendor/symfony/icu/Symfony/Component/Icu/IcuRegionBundle.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/vendor/symfony/icu/Symfony/Component/Icu/IcuRegionBundle.php b/vendor/symfony/icu/Symfony/Component/Icu/IcuRegionBundle.php
deleted file mode 100644
index 639a4339..00000000
--- a/vendor/symfony/icu/Symfony/Component/Icu/IcuRegionBundle.php
+++ /dev/null
@@ -1,28 +0,0 @@
1<?php
2
3/*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Symfony\Component\Icu;
13
14use Symfony\Component\Intl\ResourceBundle\Reader\StructuredBundleReaderInterface;
15use Symfony\Component\Intl\ResourceBundle\RegionBundle;
16
17/**
18 * A stub implementation of {@link \Symfony\Component\Intl\ResourceBundle\RegionBundleInterface}.
19 *
20 * @author Bernhard Schussek <bschussek@gmail.com>
21 */
22class IcuRegionBundle extends RegionBundle
23{
24 public function __construct(StructuredBundleReaderInterface $reader)
25 {
26 parent::__construct(realpath(IcuData::getResourceDirectory() . '/region'), $reader);
27 }
28}