How can i reindent php code so that it will look clear in Netbeans 7.4 ??
Example:
I want to convert code (with one click on a button) which looks like this:
function helloworld(){echo 'hello world';}
To:
function helloworld(){
echo 'hello world';
}