UnusedParam
A function parameter is never referenced in the function body.
Example
Section titled “Example”<?phpfunction greet(string $name, string $title): string { return "Hello!"; // $name and $title are ignored}How to fix
Section titled “How to fix”Remove the unused parameter or use it in the function body.