Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix coding standard errors
  • Loading branch information
tyabu12 committed Nov 1, 2022
commit 6838eed6c9d2b8107c313163a27b871147cc5d0c
1 change: 1 addition & 0 deletions src/Ast/PhpDoc/MethodTagValueNode.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use PHPStan\PhpDocParser\Ast\NodeAttributes;
use PHPStan\PhpDocParser\Ast\Type\TypeNode;
use function count;
use function implode;

class MethodTagValueNode implements PhpDocTagValueNode
Expand Down
8 changes: 4 additions & 4 deletions tests/PHPStan/Parser/PhpDocParserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2242,8 +2242,8 @@ public function provideMethodTagsData(): Iterator
),
]
)
)
])
),
]),
];

yield [
Expand Down Expand Up @@ -2286,8 +2286,8 @@ public function provideMethodTagsData(): Iterator
new TemplateTagValueNode('T3', new IdentifierTypeNode('Baz'), ''),
]
)
)
])
),
]),
];
}

Expand Down