Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 760 Bytes

static_lambda.rst

File metadata and controls

41 lines (28 loc) · 760 Bytes

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:

Source class

PhpCsFixer\Fixer\FunctionNotation\StaticLambdaFixer