Hi,
I'm using Symfony to write WebApps.
class Test extends BaseTest
{
public function __toString() {
return $this->getUrl();
}
} |
phpED does not recognize the code for
$this->getUrl();
The point is, that there is no "real" getUrl(); It get's called within the parents __call method.
Parent:
abstract class BaseTest extends sfDoctrineRecord
{
public function setTableDefinition()
{
$this->setTableName('test');
$this->hasColumn('url', 'string', 255, array(
'type' => 'string',
'notnull' => true,
'length' => '255',
));
}
} |
NetBeans does it well, but I don't like it at all, so it would be nice if phpEd would have such a feature, too!