I would like to ask if there is a way to change the comment code template in Netbeans PHP 6.8
In eclipse, when I type / ** ENTER, it gives out the comment template that I set in the setting, for example:
function test()
{
}
By default, Netbeans will only show the parameter in the function.
/**
*
* @param <type> $order_No
* @param <type> $array
*/
are there any possibilities in Netbeans, I could find any setting about this, does anyone know where the setting is for this?
source
share