Is there a way to configure how comments are generated after typing /**<enter> ?
Now phpstorm generates:
/**
* @static
* @param sfWebRequest $request
* @param sfForm $form
* @return void
*/
I would like it to generate:
/**
*
*
* @param sfWebRequest $request
* @param sfForm $form
*
* @static
*
* @return void
*/
Or even better:
/**
*
*
* @param sfWebRequest $request
* @param sfForm $form
*
* @static
*
* @return void
*/
Please sign in to leave a comment.
So far I have found no options that would affect the style/layout of generated PHPDoc comments.