respect-validation/tests/library/TestCase.php

21 lines
415 B
PHP
Raw Normal View History

<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the LICENSE file
* that was distributed with this source code.
*/
2018-12-05 08:36:38 +01:00
declare(strict_types=1);
2018-12-05 08:36:38 +01:00
namespace Respect\Validation\Test;
2018-12-05 08:36:38 +01:00
use PHPUnit\Framework\TestCase as PHPUnitTestCase;
2018-12-05 08:36:38 +01:00
abstract class TestCase extends PHPUnitTestCase
{
}