Skip to content

Commit 2a56a24

Browse files
Update rules/CodeQuality/Rector/BooleanAnd/RepeatedAndNotEqualToNotInArrayRector.php
Co-authored-by: Abdul Malik Ikhsan <samsonasik@gmail.com>
1 parent 72cf61a commit 2a56a24

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rules/CodeQuality/Rector/BooleanAnd/RepeatedAndNotEqualToNotInArrayRector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ private function matchComparedAndDesiredValues(BooleanAnd $booleanAnd): ?array
181181

182182
private function isStrictComparison(BooleanAnd $booleanAnd): bool
183183
{
184-
$notIenticals = $this->betterNodeFinder->findInstanceOf($booleanAnd, NotIdentical::class);
184+
$notIdenticals = $this->betterNodeFinder->findInstanceOf($booleanAnd, NotIdentical::class);
185185
$notEquals = $this->betterNodeFinder->findInstanceOf($booleanAnd, NotEqual::class);
186186

187187
if ($notIenticals !== []) {

0 commit comments

Comments
 (0)