
phpdoc_no_empty_return
¶@return void
and @return null
annotations should be omitted from PHPDoc.
--- Original
+++ New
<?php
/**
- * @return null
*/
function foo() {}
--- Original
+++ New
<?php
/**
- * @return void
*/
function foo() {}
The rule is part of the following rule set:
Using the @PhpCsFixer rule set will enable the phpdoc_no_empty_return
rule.