Skip to content

Commit

Permalink
Merge pull request #8145 from kenjis/fix-types-in-filter.tpl.php
Browse files Browse the repository at this point in the history
fix: `@return` in filter.tpl.php
  • Loading branch information
kenjis authored Nov 7, 2023
2 parents eebec16 + a884251 commit 46ab4c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/Commands/Generators/Views/filter.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class {class} implements FilterInterface
* @param RequestInterface $request
* @param array|null $arguments
*
* @return mixed
* @return RequestInterface|ResponseInterface|string|void
*/
public function before(RequestInterface $request, $arguments = null)
{
Expand All @@ -38,7 +38,7 @@ public function before(RequestInterface $request, $arguments = null)
* @param ResponseInterface $response
* @param array|null $arguments
*
* @return mixed
* @return ResponseInterface|void
*/
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null)
{
Expand Down

0 comments on commit 46ab4c6

Please sign in to comment.