return_assignment
Local, dynamic and directly referenced variables should not be assigned and directly returned by a function or method.
--- Original +++ New <?php function a() { - $a = 1; - return $a; + return 1; }
The rule is part of the following rule set:
@PhpCsFixer