Fork me on GitHub
a Sensio Labs Product

15 Keys (v3.52.1) edition

Rule no_useless_return

There should not be an empty return statement at the end of a function.

Examples

Example #1

--- Original
+++ New
 <?php
 function example($b) {
     if ($b) {
         return;
     }
-    return;
+
 }

Rule sets

The rule is part of the following rule set:

References

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