static_lambda
Lambdas not (indirect) referencing $this must be declared static.
$this
static
Risky when using ->bindTo on lambdas without referencing to $this.
->bindTo
--- Original +++ New <?php -$a = function () use ($b) +$a = static function () use ($b) { echo $b; };