Skip to content

Commit 2e17613

Browse files
authored
Merge pull request #7321 from samsonasik/fix-param-null
Fix @param null $arguments on FilterInterface
2 parents 73d748d + ddc44af commit 2e17613

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)