This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Intl/Resources/stubs/IntlDateFormatter.php

24 lines
555 B
PHP
Raw Normal View History

<?php
/*
* This file is part of the Symfony package.
*
2011-03-14 00:54:44 +00:00
* (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.
*/
use Symfony\Component\Intl\DateFormatter\IntlDateFormatter as BaseIntlDateFormatter;
/**
2014-12-21 17:00:50 +00:00
* Stub implementation for the IntlDateFormatter class of the intl extension.
*
2012-05-26 08:48:33 +01:00
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @see BaseIntlDateFormatter
*/
class IntlDateFormatter extends BaseIntlDateFormatter
2011-06-24 00:49:48 +01:00
{
}