Skip to content

Commit 7561fe7

Browse files
committed
Fix
1 parent 03d48d0 commit 7561fe7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Fixer/Annotation/RemovePropertyVariableNameDescriptionFixer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function fix(SplFileInfo $fileInfo, Tokens $tokens): void
7777

7878
preg_match_all(self::VAR_REGEX, $originalDocContent, $matches);
7979

80-
if (isset($matches[0]) && is_array($matches[0]) && count($matches[0]) !== 1) {
80+
if (count($matches[0]) !== 1) {
8181
continue;
8282
}
8383

0 commit comments

Comments
 (0)