Here is a bit of wisdom from the Attribute parser:
Fatal error: Attribute "Deprecated" cannot target parameter (allowed targets: function, method, class constant)
<?php
function unsafe_function(
#[\Deprecated(message: "don't use hello param anymore", since: "1.5")]
string $hello,
) {
echo "This is unsafe", PHP_EOL;
}