Does anyone know of an IDE that will support get/set/accessors and some of those magic properties.
class {
/**
@property string $test holds test data
/
protected $mtest;
class _set($func) {
$func = m.$func
return $this->$func
}
class _get() {}
}
In a situation like this (even if the protected property) did not exist there would be no way to know from an IDE'S autocomplete / object properties list would know what this is comprised of.
PHPDoc offers the @property attribute for documenting the magic properties. Now, just need an IDE that will use the @property with autocomplete. If not that way, does anyone know of an IDE that will allow you to extend the objects autocomplete in some other way?
Thank You