diff --git a/src/Methods/NoParameterWithNullDefaultValueRule.php b/src/Methods/NoParameterWithNullDefaultValueRule.php index 02477a33..575a49e9 100644 --- a/src/Methods/NoParameterWithNullDefaultValueRule.php +++ b/src/Methods/NoParameterWithNullDefaultValueRule.php @@ -37,8 +37,8 @@ public function processNode( return []; } - $parametersWithNullDefaultValue = \array_filter($node->params, static function (Node\Param $node): bool { - return self::hasNullDefaultValue($node); + $parametersWithNullDefaultValue = \array_filter($node->params, static function (Node\Param $parameter): bool { + return self::hasNullDefaultValue($parameter); }); if (0 === \count($parametersWithNullDefaultValue)) {