File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed
Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 22/**
33 * Slim Framework (https://www.slimframework.com)
44 *
5- * @license https://github.com/slimphp/Slim-HttpCache/blob/master/LICENSE.md (MIT License)
5+ * @license https://github.com/slimphp/Slim-HttpCache/blob/master/LICENSE.md (MIT License)
66 */
77
88declare (strict_types=1 );
99
1010namespace Slim \HttpCache \Tests ;
1111
1212use InvalidArgumentException ;
13- use PHPUnit \Framework \TestCase ;
1413use Psr \Http \Message \ResponseInterface ;
1514use Slim \HttpCache \CacheProvider ;
1615use Slim \Psr7 \Factory \ResponseFactory ;
Original file line number Diff line number Diff line change 22/**
33 * Slim Framework (https://www.slimframework.com)
44 *
5- * @license https://github.com/slimphp/Slim-HttpCache/blob/master/LICENSE.md (MIT License)
5+ * @license https://github.com/slimphp/Slim-HttpCache/blob/master/LICENSE.md (MIT License)
66 */
77
88declare (strict_types=1 );
99
1010namespace Slim \HttpCache \Tests ;
1111
12- use PHPUnit \Framework \TestCase ;
1312use Psr \Http \Message \ResponseInterface ;
1413use Psr \Http \Message \ServerRequestInterface ;
1514use Psr \Http \Server \RequestHandlerInterface ;
Original file line number Diff line number Diff line change 1+ <?php
2+ /**
3+ * Slim Framework (https://www.slimframework.com)
4+ *
5+ * @license https://github.com/slimphp/Slim-HttpCache/blob/master/LICENSE.md (MIT License)
6+ */
7+
8+ declare (strict_types=1 );
9+
10+ namespace Slim \HttpCache \Tests ;
11+
12+ use PHPUnit \Framework \TestCase as PhpUnitTestCase ;
13+
14+ abstract class TestCase extends PhpUnitTestCase
15+ {
16+ }
You can’t perform that action at this time.
0 commit comments