Hello and Happy New Year !
I'm using NuSpherePhpED Professional v5.5, PHP DBG Listener, version 3.4.1
and i'm coding base on Prado framework
I can debug smoothly except when i step into (F7) Prado classes and function where there is a $this. The debugger does not understand the class and return ($this: undefined = NULL) and throw an exception
php code
$conn = TActiveRecordManager::getInstance()->getDbConnection();
|
TActiveRecordManager class file.
public function getDbConnection()
{
return $this->_connection;
}
|
The browser output
TInvalidOperationException
Description
Component property 'TActiveRecordManager.Application' is not defined.
|
But if i use step over F8 , the above problem does not occur.
How can i fix the problem ?
Any help is appreciated
Thanks