-
-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Php80] Handle trailing comma on AnnotationToAttributeRector on Doctr…
…ine JoinColumn (#2766)
- Loading branch information
1 parent
2977d09
commit 1f6cea3
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
...s/Php80/Rector/Class_/AnnotationToAttributeRector/Fixture/Doctrine/trailing_comma.php.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
namespace Rector\Tests\Php80\Rector\Class_\AnnotationToAttributeRector\Fixture\Doctrine; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
|
||
final class TrailingComma | ||
{ | ||
/** | ||
* @ORM\JoinColumn(name="parent_id", referencedColumnName="id", nullable=true, ) | ||
**/ | ||
protected $someColumn; | ||
} | ||
|
||
?> | ||
----- | ||
<?php | ||
|
||
namespace Rector\Tests\Php80\Rector\Class_\AnnotationToAttributeRector\Fixture\Doctrine; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
|
||
final class TrailingComma | ||
{ | ||
#[ORM\JoinColumn(name: 'parent_id', referencedColumnName: 'id', nullable: true)] | ||
protected $someColumn; | ||
} | ||
|
||
?> |