File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -4463,7 +4463,7 @@ public function provideTagsWithNumbers(): Iterator
4463
4463
public function provideTagsWithBackslash (): Iterator
4464
4464
{
4465
4465
yield [
4466
- 'OK without description and tag with backslash in it ' ,
4466
+ 'OK without description and tag with backslashes in it ' ,
4467
4467
'/** @ORM\Mapping\Entity User */ ' ,
4468
4468
new PhpDocNode ([
4469
4469
new PhpDocTagNode (
@@ -4472,6 +4472,17 @@ public function provideTagsWithBackslash(): Iterator
4472
4472
),
4473
4473
]),
4474
4474
];
4475
+
4476
+ yield [
4477
+ 'OK without description and tag with backslashes in it and parenthesis ' ,
4478
+ '/** @ORM\Mapping\JoinColumn(name="column_id", referencedColumnName="id") */ ' ,
4479
+ new PhpDocNode ([
4480
+ new PhpDocTagNode (
4481
+ '@ORM\Mapping\JoinColumn ' ,
4482
+ new GenericTagValueNode ('(name="column_id", referencedColumnName="id") ' )
4483
+ ),
4484
+ ]),
4485
+ ];
4475
4486
}
4476
4487
4477
4488
/**
You can’t perform that action at this time.
0 commit comments