Skip to content

Commit 73d3bba

Browse files
committed
[Annotation] Skip multiple @var on variable definition on RemovePropertyVariableNameDescriptionFixer
1 parent e5a5093 commit 73d3bba

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
namespace Symplify\CodingStandard\Tests\Fixer\Annotation\RemovePropertyVariableNameDescriptionFixer\Fixture;
4+
5+
use PhpParser\Node\Arg;
6+
use PhpParser\Node\Expr\FuncCall;
7+
8+
final class SkipMultipleVar
9+
{
10+
public function run()
11+
{
12+
/**
13+
* @var FuncCall $firstArgumentValue
14+
* @var array<Arg> $args
15+
**/
16+
$args = $firstArgumentValue->getArgs();
17+
}
18+
}
19+
20+
?>

0 commit comments

Comments
 (0)