Fork me on GitHub
a Sensio Labs Product

BoY42 (v3.15.1) 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)      ;
The logo is © 2010-2022 Sensio Labs