Not sure if this is the right forum or not. I am looking for an IDE which supports PHPDOCs @properties which allows you to document and autocomplete magic methods.
/**
* show off @property, @property-read, @property-write
*
* @property mixed $regular regular read/write property
* @property-read int $foo the foo prop
* @property-write string $bar the bar prop
*/
Example something like this. This is used with __get, __set and so forth. Would like to document the magic methods and allow them to show up in autocomplete. Does anyone know of an IDE that supports this? Currently using PHPED and no support. Does not even show up in informational portion for the object.
/**
* show off @property, @property-read, @property-write
*
* @property mixed $regular regular read/write property
* @property-read int $foo the foo prop
* @property-write string $bar the bar prop
*/
Example something like this. This is used with __get, __set and so forth. Would like to document the magic methods and allow them to show up in autocomplete. Does anyone know of an IDE that supports this? Currently using PHPED and no support. Does not even show up in informational portion for the object.