diff --git a/tests/ZM/Utils/HttpUtilTest.php b/tests/ZM/Utils/HttpUtilTest.php index f8e5443b..10d41be3 100644 --- a/tests/ZM/Utils/HttpUtilTest.php +++ b/tests/ZM/Utils/HttpUtilTest.php @@ -4,15 +4,18 @@ declare(strict_types=1); namespace Tests\ZM\Utils; +use PHPUnit\Framework\TestCase; use Swoole\Http\Request; use Swoole\Http\Response; use Symfony\Component\Routing\RouteCollection; use ZM\Annotation\Http\RequestMapping; use ZM\Annotation\Http\RequestMethod; use ZM\Utils\HttpUtil; -use PHPUnit\Framework\TestCase; use ZM\Utils\Manager\RouteManager; +/** + * @internal + */ class HttpUtilTest extends TestCase { /** diff --git a/tests/ZM/Utils/SingletonTraitTest.php b/tests/ZM/Utils/SingletonTraitTest.php index e7f5998c..9313db51 100644 --- a/tests/ZM/Utils/SingletonTraitTest.php +++ b/tests/ZM/Utils/SingletonTraitTest.php @@ -4,9 +4,12 @@ declare(strict_types=1); namespace Tests\ZM\Utils; -use ZM\Utils\SingletonTrait; use PHPUnit\Framework\TestCase; +use ZM\Utils\SingletonTrait; +/** + * @internal + */ class SingletonTraitTest extends TestCase { public function testGetInstance(): void