Skip to content

Commit

Permalink
[ci-review] Rector Rectify
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizen-ci committed Apr 15, 2021
1 parent e50ceaf commit 953200a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions rules/DeadCode/PhpDoc/TagRemover/VarTagRemover.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,7 @@ private function isNonBasicArrayType(Node $node, VarTagValueNode $varTagValueNod
if (! $type instanceof SpacingAwareArrayTypeNode) {
return false;
}
if (! $this->isArrayOfExistingClassNode($node, $type)) {
return false;
}
return true;
return $this->isArrayOfExistingClassNode($node, $type);
}
}

Expand Down

0 comments on commit 953200a

Please sign in to comment.