Skip to content

Commit 6c187dd

Browse files
authored
Merge pull request #8146 from kenjis/fix-mixed-in-ControllerTestTrait
docs: fix @param in ControllerTestTrait
2 parents c3613ca + 9d2b071 commit 6c187dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

system/Test/ControllerTestTrait.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ public function execute(string $method, ...$params)
215215
/**
216216
* Set controller's config, with method chaining.
217217
*
218-
* @param mixed $appConfig
218+
* @param App $appConfig
219219
*
220220
* @return $this
221221
*/
@@ -229,7 +229,7 @@ public function withConfig($appConfig)
229229
/**
230230
* Set controller's request, with method chaining.
231231
*
232-
* @param mixed $request
232+
* @param IncomingRequest $request
233233
*
234234
* @return $this
235235
*/
@@ -260,7 +260,7 @@ public function withResponse($response)
260260
/**
261261
* Set controller's logger, with method chaining.
262262
*
263-
* @param mixed $logger
263+
* @param LoggerInterface $logger
264264
*
265265
* @return $this
266266
*/

0 commit comments

Comments
 (0)