Fork me on GitHub
a Sensio Labs Product

15 Keys (v3.52.1) edition

Rule void_return

Add void return type to functions with missing or empty return statements, but priority is given to @return annotations. Requires PHP >= 7.1.

Warning

Using this rule is risky

Modifies the signature of functions.

Examples

Example #1

--- Original
+++ New
 <?php
-function foo($a) {};
+function foo($a): void {};

Rule sets

The rule is part of the following rule sets:

References

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