Hi to all,
first of all - your IDE rocks. The best IDE I have seen ever! Respect.
I'm not sure, in which board to put this thread, but, I have problems with such code in global context, ex.:
$object = & new someClass();
// then I'm writing a new class ex.:
class myClass {
var $objectReference;
function myClass() {
global $object;
// we assign a reference of existing object to our class, but seems that phpED messes with that up.
// while calling Code Insight like this: $object-> returns list of methods, but...
$this->objectReference = & object;
// later trying to execute Code Insight like this:
// $this->objectReference-> returns no inner methods of this object
}
}
|
I and (I think) a lot of developers work with objects, that inherits other global objects, but code Insight desn't work in this case, althought it should.
If that would be fixed/implemented in next version of phpED, I'd be the happy'iest person in the earth!
Thank you!
Bye