I am always not able to follow Netbeans default coding conventions like the following
Function should be N lines only
Method Length is N Lines (M allowed)
Warning: Do not Access Superglobal $_POST Array Directly
// Using this
$username = filter_input(INPUT_POST, 'username');
// Instead of this
$_POST['username'];
And many more.
It seems really hard to follow all of the coding conventions. So, what can I achieve if I follow it 100 %?