Just a question from a newbe Follow
Hi,
I'm very happy with PhpStorm but there is one annoying question: if a function name is struck like this $this->getRequest()->... what does it mean?
Thanks for any explanation.
Regards
Please sign in to leave a comment.
Hi there,
It means that it is marked as Deprecated (via PHPDoc's @deprecated tag).
You can Ctrl+Q (View | Quick Documentation) to see what IDE knows about it.
Also, when you $this->[CTRL+SPACE] (Code | Completion | Basic) it should list it as deprecated there as well.
Obviously, it's all valid as long as you use one of the bundled editor themes (as in custom one you can apply this "strike through" style to any styling element)
Thanks for your answer.
Regards