At work, we are currently using an IDE called PHPEdit, however we are striving to move to another primary IDE, we are looking at Aptana Studio 3, based on eclipse.
A very nice feature of PHPedit was that you could create new methods by clicking a little help on the new methods.
For example, you can enter
$data = $this->model->getData();
and if the getData () function does not exist, you can click on the word "getData" and get a small option to create a method, then it will automatically create it in the corresponding model and if you pass it any parameters like $ var, $ var, then he will automatically install them.
I was wondering if such a feature is available or if anyone knows about it, since I'm not too sure what to look for in any documentation, since I don't know what it really is called.
Thank you very much!
source share