From 9d2b0713894822803693f30f54cdc6fb589ee5ff Mon Sep 17 00:00:00 2001 From: kenjis Date: Sat, 4 Nov 2023 14:23:53 +0900 Subject: [PATCH] docs: fix @param in ControllerTestTrait --- system/Test/ControllerTestTrait.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/system/Test/ControllerTestTrait.php b/system/Test/ControllerTestTrait.php index 2da65d1aa2f7..a99b899eaf63 100644 --- a/system/Test/ControllerTestTrait.php +++ b/system/Test/ControllerTestTrait.php @@ -215,7 +215,7 @@ public function execute(string $method, ...$params) /** * Set controller's config, with method chaining. * - * @param mixed $appConfig + * @param App $appConfig * * @return $this */ @@ -229,7 +229,7 @@ public function withConfig($appConfig) /** * Set controller's request, with method chaining. * - * @param mixed $request + * @param IncomingRequest $request * * @return $this */ @@ -260,7 +260,7 @@ public function withResponse($response) /** * Set controller's logger, with method chaining. * - * @param mixed $logger + * @param LoggerInterface $logger * * @return $this */