Hello,
Recently i implemented a "InstanceManager" class.
The method InstanceManager::GetInstance must be called with a defined classname and it returns an object.
// for instance
$UserLogin = $InstanceManager->GetInstance(T_USERLOGIN);
|
Problem is that the code completion / intellisense is not working on the returned objects. This was expected, but i was
wondering if there are any tricks to get this to work again. A trick to let PHPed know which
type of object a variable represents.
Any help would be great. Thanks in advance.