Avoid having too many conditions using variables without operators
Why you should care
Business Impacts
It is recommended to use an explicit method to verify conditions of your variables, in order to avoid misinterpretation and possible bugs.
CAST Recommendations
CAST recommends checking your variables with the appropriate method, depending on your specific case (e.g. isset() to check the variable exists, empty(), is_null, etc.) in order to avoid any misinterpretation of the verification (boolean, empty, exist).
How we detect
Example:
if($_GET[‘myvariable’]) { … }
if($foo) { … }
About CAST and Highlight’s Code Insights
Over the last 25 years, CAST has leveraged unique knowledge on software quality measurement by analyzing thousands of applications and billions of lines of code. Based on this experience and community standards on programming best practices, Highlight implements hundreds of code insights across 15+ technologies to calculate health factors of a software.