
lambda_not_used_import
¶Lambda must not import variables it doesn’t use.
--- Original
+++ New
<?php
-$foo = function() use ($bar) {};
+$foo = function() {};
The rule is part of the following rule sets:
Using the @PhpCsFixer rule set will enable the lambda_not_used_import
rule.
Using the @Symfony rule set will enable the lambda_not_used_import
rule.