Skip to content

Commit ddc44af

Browse files
committed
Fix @param null $arguments on FilterInterface
1 parent a84ba13 commit ddc44af

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
@@ -29,7 +29,7 @@ interface FilterInterface
2929
* sent back to the client, allowing for error pages,
3030
* redirects, etc.
3131
*
32-
* @param null $arguments
32+
* @param array|null $arguments
3333
*
3434
* @return mixed
3535
*/
@@ -41,7 +41,7 @@ public function before(RequestInterface $request, $arguments = null);
4141
* to stop execution of other after filters, short of
4242
* throwing an Exception or Error.
4343
*
44-
* @param null $arguments
44+
* @param array|null $arguments
4545
*
4646
* @return mixed
4747
*/

0 commit comments

Comments
 (0)