Just a question from a newbe

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

0

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)

0
Avatar
Permanently deleted user

Thanks for your answer.
Regards

0

请先登录再写评论。