Last Updated: April 19, 2016
·
588
· anriettec

PHPStorm "Type hinting", if you can call it that

If you want PHPStorm to recognise the underlying functions, etc. for a specific variable, you can use PHPDoc block comments like so:

/** @var $the_variable ObjectOrClassItIs */
private var $the_variable;