| 12345678910111213141516171819 |
- <?php declare(strict_types=1);
- /**
- * This file is part of toolkit/stdlib.
- *
- * @author https://github.com/inhere
- * @link https://github.com/php-toolkit/stdlib
- * @license MIT
- */
- namespace Toolkit\StdlibTest;
- use Toolkit\Stdlib\Helper\BasePhpTestCase;
- /**
- * class BaseLibTestCase
- */
- abstract class BaseLibTestCase extends BasePhpTestCase
- {
- }
|