Files
wallabag/vendor/symfony/icu/Symfony/Component/Icu/IcuCurrencyBundle.php

29 lines
802 B
PHP
Raw Normal View History

2013-08-03 19:26:54 +02:00
<?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\CurrencyBundle;
use Symfony\Component\Intl\ResourceBundle\Reader\StructuredBundleReaderInterface;
/**
* A stub implementation of {@link \Symfony\Component\Intl\ResourceBundle\CurrencyBundleInterface}.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*/
class IcuCurrencyBundle extends CurrencyBundle
{
public function __construct(StructuredBundleReaderInterface $reader)
{
parent::__construct(realpath(IcuData::getResourceDirectory() . '/curr'), $reader);
}
}