I report a simple example to explain my problem
in a file I have this line
$settings = json_decode(Configuration::get('MAO_BMSHIPPING_SETTINGS'), true);
but now this line become some type suggestions
$settings = json_decode(json: Configuration::get('MAO_BMSHIPPING_SETTINGS'), associative: true);
and if I click double on them, I can add in the line
I want to leave that only for the method declaration and not for the method calls
do you know how to disable it just for the method call?
this situation creates problems for me because it greatly lengthens the lines and the management of the arguments if I want to make changes to their names.
Then it doesn't seem to me to have a use, the typification should only be in the declarations of the methods and not in the calls to these, it makes no sense to have to do it for each of their calls.
thanks