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
PHP doesn't support type hinting on return types. Perhaps you should add a documentation block declaring the return type and maybe your IDE will pick that up (I don't know if it will or not).