I have just started to use Code Sniffer to clean up my code.
I found out that Code Sniffer catches php's built-in function names as errors. For example:
on line if($mysqli->connect_error === true) { I get a message that:
Variable "connect_error" is not in valid camel caps format.
I have chosen to use the Zend standard as it shows a lot of points for cleaning up and would like to use it in the future.
So the question is - how do you go about this? - ignore these errors - fix php code sniffer to ignore php built-in function names - use another standard? - anything else?
Thanks for your suggestions!
Andrius