the whole shebang

This commit is contained in:
2014-11-25 16:42:40 +01:00
父節點 7f74c0613e
當前提交 ab1334c0cf
共有 3686 個文件被更改,包括 496409 次插入1 次删除

查看文件

@@ -0,0 +1,22 @@
<?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\Translation\Tests\Loader;
abstract class LocalizedTestCase extends \PHPUnit_Framework_TestCase
{
protected function setUp()
{
if (!extension_loaded('intl')) {
$this->markTestSkipped('The "intl" extension is not available');
}
}
}