Skip to content

Commit aa62efa

Browse files
committed
Adapt to latest coding standard
1 parent f71956f commit aa62efa

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/Tests/ORM/Functional/Ticket/GH12174Test.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ class GH12174Smurf
6161
* @ORM\Id
6262
* @ORM\GeneratedValue
6363
* @ORM\Column(type="integer")
64+
*
6465
* @var int
6566
*/
6667
#[ORM\Id]
@@ -70,13 +71,15 @@ class GH12174Smurf
7071

7172
/**
7273
* @ORM\ManyToOne(inversedBy="children", targetEntity="GH12174Smurf")
74+
*
7375
* @var GH12174Smurf
7476
*/
7577
#[ManyToOne(inversedBy: 'children')]
7678
private $parent;
7779

7880
/**
7981
* @ORM\OneToMany(targetEntity="GH12174Smurf", mappedBy="parent")
82+
*
8083
* @var Collection
8184
*/
8285
#[OneToMany(targetEntity: self::class, mappedBy: 'parent')]

0 commit comments

Comments
 (0)