# PossiblyUnusedParam Emitted when `--find-dead-code` is turned on and Psalm cannot find any uses of a particular parameter in a public/protected method ```php foo(1, 2); ``` Can be suppressed by prefixing the parameter name with an underscore: ```php