Hello,
first i like to say, that PHPEd is a very nice tool. Thank you to the developers!
Now, i have a question about code insight in classes. Please look at the following code:
class ClassA
{
public function foo() { }
}
class ClassB
{
private $m_strSomeVar;
private $m_objClassA
function __construct(ClassA $objClassA)
{
$this->m_strSomeVar = "";
$this->m_objClassA = $objClassA;
$this->??? // <-- no popop, phped dont show methods in ClassA
}
}
|
If i use CTRL + Space, it shows a message "Failed to identify type of $this->m_objClassA".
Is there are a way to work code completion in this case?