Fork me on GitHub
a Sensio Labs Product

7th Gear (v3.57.1) edition

Rule static_lambda

Lambdas not (indirectly) referencing $this must be declared static.

Warning

Using this rule is risky

Risky when using ->bindTo on lambdas without referencing to $this.

Examples

Example #1

--- Original
+++ New
 <?php
-$a = function () use ($b)
+$a = static function () use ($b)
 {   echo $b;
 };

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.