Skip to content

Commit b8694b4

Browse files
committed
Use multiline comment
1 parent 9fc7599 commit b8694b4

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

tests/phpstan/GlobalDocBlockVisitor.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,11 @@ public function enterNode( Node $node ): ?Node {
8282
return null;
8383
}
8484

85-
// Collect variable names that already have a hand-written `@var` on this
86-
// statement so we can leave them alone but still inject `@var` lines for
87-
// the remaining variables in a multi-variable `global $a, $b;` statement.
85+
/*
86+
* Collect variable names that already have a handwritten `@var` on this
87+
* statement so we can leave them alone but still inject `@var` lines for
88+
* the remaining variables in a multi-variable `global $a, $b;` statement.
89+
*/
8890
$existing = $node->getDocComment();
8991
$existing_text = $existing !== null ? $existing->getText() : '';
9092
$already_typed = array();

0 commit comments

Comments
 (0)