Skip to content

Commit

Permalink
Fix psalm mixed param override
Browse files Browse the repository at this point in the history
Signed-off-by: Abdul Malik Ikhsan <[email protected]>
  • Loading branch information
samsonasik committed Nov 2, 2024
1 parent d78eebc commit b7ae47f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/FilterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ interface FilterInterface
/**
* Returns the result of filtering $value
*
* @param mixed $value
* @throws Exception\RuntimeException If filtering $value is impossible.
* @return mixed
*/
public function filter(mixed $value);
public function filter($value);
}

0 comments on commit b7ae47f

Please sign in to comment.