BaseLibTestCase.php 357 B

12345678910111213141516171819
  1. <?php declare(strict_types=1);
  2. /**
  3. * This file is part of toolkit/stdlib.
  4. *
  5. * @author https://github.com/inhere
  6. * @link https://github.com/php-toolkit/stdlib
  7. * @license MIT
  8. */
  9. namespace Toolkit\StdlibTest;
  10. use Toolkit\Stdlib\Helper\BasePhpTestCase;
  11. /**
  12. * class BaseLibTestCase
  13. */
  14. abstract class BaseLibTestCase extends BasePhpTestCase
  15. {
  16. }