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