Skip to content

Commit 7e4ea31

Browse files
committed
Update RemovePropertyVariableNameDescriptionFixer.php
1 parent a7eed22 commit 7e4ea31

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/Fixer/Annotation/RemovePropertyVariableNameDescriptionFixer.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ final class RemovePropertyVariableNameDescriptionFixer extends AbstractSymplifyF
3030
*/
3131
private const VAR_REGEX = '#@(?:psalm-|phpstan-)?var#';
3232

33-
3433
private readonly PropertyNameResolver $propertyNameResolver;
3534

3635
public function __construct(
@@ -84,7 +83,7 @@ public function fix(SplFileInfo $fileInfo, Tokens $tokens): void
8483
continue;
8584
}
8685

87-
if (!preg_match(self::VAR_REGEX, $docblockLine)) {
86+
if (! preg_match(self::VAR_REGEX, $docblockLine)) {
8887
continue;
8988
}
9089

0 commit comments

Comments
 (0)