Netbeans (PHP): How to disable the imposed multi-lines comment syntax?
Whenever I want to write a multi-line comment within my PHP files, Netbeans throws some horrible commenting syntax on to my face.
I intend to write this:
/*
This is a multi-line comment.
That's how I do it, clear, simple, effective.
*/
But instead Netbeans forces me into having this:
/*
* This is a multi-line comment.
* That's what I wanna avoid, it's dirty, stupid, ineffective and ridiculous.
*/
I've tried looking at the different options but couldn't find anything related, even searching for "comment" in the options panel returns 0 results.
Is there any way to disable this horrible thing?
Thanks!