forked from wallabag/wallabag
twig implementation
This commit is contained in:
28
vendor/symfony/icu/Symfony/Component/Icu/IcuLocaleBundle.php
vendored
Normal file
28
vendor/symfony/icu/Symfony/Component/Icu/IcuLocaleBundle.php
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
<?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\Icu;
|
||||
|
||||
use Symfony\Component\Intl\ResourceBundle\LocaleBundle;
|
||||
use Symfony\Component\Intl\ResourceBundle\Reader\StructuredBundleReaderInterface;
|
||||
|
||||
/**
|
||||
* A stub implementation of {@link \Symfony\Component\Intl\ResourceBundle\LocaleBundleInterface}.
|
||||
*
|
||||
* @author Bernhard Schussek <bschussek@gmail.com>
|
||||
*/
|
||||
class IcuLocaleBundle extends LocaleBundle
|
||||
{
|
||||
public function __construct(StructuredBundleReaderInterface $reader)
|
||||
{
|
||||
parent::__construct(realpath(IcuData::getResourceDirectory() . '/locales'), $reader);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user