What is the correct syntax for me to specify the return type hints for a method?
For example, I have such a method:
private static function Construct
The IDE hinting is done via comments. Here is an example from one of my ZEND Front Plugins.
setStorage(new My_AuthStorage($session)); return $auth; }