We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cee33d9 commit 1762c99Copy full SHA for 1762c99
tests/PHPStan/Printer/PrinterTest.php
@@ -694,12 +694,8 @@ public function enterNode(Node $node)
694
695
$commentedNode = new ArrayShapeItemNode(new IdentifierTypeNode('f'), false, new IdentifierTypeNode('string'));
696
$commentedNode->setAttribute(Attribute::COMMENTS, [
697
- new Comment(
698
- '/* A single line comment */'
699
- ),
700
701
- '/* Another one on the same line */'
702
- )
+ new Comment('/* A single line comment */'),
+ new Comment('/* Another one on the same line */')
703
]);
704
$node->items[] = $commentedNode;
705
}
0 commit comments