Fork me on GitHub
a Sensio Labs Product

15 Keys (v3.53.0) edition

Rule simplified_if_return

Simplify if control structures that return the boolean result of their condition.

Examples

Example #1

--- Original
+++ New
 <?php
-if ($foo) { return true; } return false;
+return (bool) ($foo)      ;

References

The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.