Tagged Questions
5
votes
1answer
486 views
JetBrains WebIDE: PHP variable type hinting?
Is there a way to hint WebIDE that a variable has some type?
I have to iterate an array of objects, and there's no auto-completion available.
This helps in ZendStudio:
/* @var ClassName $object */
...