I am using NetBeans for coding purpose. I found that when you type /** and press enter key then NetBeans auto generates comments for below defined function
ie. if my function is
function hello($param1, $param2){
}
and I type /** and press enter key above hello function, Then it automatically gives me function commenting
/**
*
* @param type $param1
* @param type $param2
*/
function hello($param1, $param2){
}
I want to modify this commenting and want to add more parameters like @author, @package, @version. I have checked in templates section but not found this template (Templates are triggering with abbreviation + tab, And /** commenting is triggering with enter key. So it might be somewhere else)
Can anyone guide me to achieve below output when /** + enter key pressed
/**
* @author Mujaffar S Created on 03 Sep 2013
* @param type $param1
* @param type $param2
* @package default
* @version 1.1
*/
function hello($param1, $param2){
}
For reference I am using PHP package as developing code in PHP project
Thanks in advance