Skip to content

Commit 831a401

Browse files
committed
docs: change back mixed return type in filterInterface class.
1 parent d9313c4 commit 831a401

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

system/Filters/FilterInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ interface FilterInterface
3131
*
3232
* @param array|null $arguments
3333
*
34-
* @return RequestInterface|ResponseInterface|string|void
34+
* @return mixed
3535
*/
3636
public function before(RequestInterface $request, $arguments = null);
3737

@@ -43,7 +43,7 @@ public function before(RequestInterface $request, $arguments = null);
4343
*
4444
* @param array|null $arguments
4545
*
46-
* @return ResponseInterface|void
46+
* @return mixed
4747
*/
4848
public function after(RequestInterface $request, ResponseInterface $response, $arguments = null);
4949
}

0 commit comments

Comments
 (0)