From 533fe187bd770090e85cb3ec896e7cc4fa7bb5a6 Mon Sep 17 00:00:00 2001 From: sunxyw Date: Tue, 29 Mar 2022 19:48:31 +0800 Subject: [PATCH] fix cs --- tests/ZM/Utils/HttpUtilTest.php | 5 ++++- tests/ZM/Utils/SingletonTraitTest.php | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) 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