mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 18:17:55 +01:00
e6aa63731d
Fixes vimeo/psalm#3166
336 B
336 B
UnusedDocblockParam
Emitted when --find-dead-code
is turned on and a parameter specified in docblock does not have a corresponding parameter in function / method signature.
<?php
/**
* @param string $legacy_param was renamed to $newParam
*/
function f(string $newParam): string {
return strtolower($newParam);
}