Fork me on GitHub
a Sensio Labs Product

BoY42 (v3.15.1) edition

Rule static_lambda

Lambdas not (indirect) 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;
 };
The logo is © 2010-2022 Sensio Labs