Does anybody know an PHP IDE that features a tool to encapsulate private variables, as Visual Studio does for C#/VB/etc? In fact any IDEs that support PHP and include code-generation tools would be of interest.
Does anybody know an PHP IDE that features a tool to encapsulate private variables,
Share
yes and no 😉
There are IDEs that support code generation of getter and setter methods. For example the commercial Zend Studio for Eclipse and the free Aptana Studio with PHP Plugin. In fact this is a bit different to the encapsulation in C#, as you won’t get this:
but something this:
Hope this helps a bit.
Regards, Mario