Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | */ |
||
13 | class MyEntity1 |
||
14 | { |
||
15 | /** |
||
16 | * @ORM\Id |
||
17 | * @ORM\OneToOne(targetEntity=MyEntity2::class) |
||
18 | * @ORM\JoinColumn(name="entity2_id", referencedColumnName="id", nullable=false) |
||
19 | */ |
||
20 | private $entity2; |
||
21 | |||
22 | public function __construct(MyEntity2 $myEntity2) |
||
23 | { |
||
24 | $this->entity2 = $myEntity2; |
||
76 |