Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
staabm authored and ondrejmirtes committed Jan 8, 2023
1 parent 6276ce1 commit 5503d87
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -66,7 +66,7 @@ public function processNode(Node $node, Scope $scope): array
if (isset(self::SIDE_EFFECT_FLIP_PARAMETERS[$functionName])) {
[
$flipParameterName,
$flipParameterPosision,
$flipParameterPosition,
$testName,
$defaultHasSideEffect,
] = self::SIDE_EFFECT_FLIP_PARAMETERS[$functionName];
Expand All @@ -92,7 +92,7 @@ public function processNode(Node $node, Scope $scope): array
}
}

if (!$hasNamedParameter && $i === $flipParameterPosision) {
if (!$hasNamedParameter && $i === $flipParameterPosition) {
$isFlipParameter = true;
}

Expand Down

0 comments on commit 5503d87

Please sign in to comment.