Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
61 | class GH7719Wife |
||
62 | { |
||
63 | /** |
||
64 | * @ORM\Id |
||
65 | * @ORM\Column(type="integer") |
||
66 | * @ORM\GeneratedValue |
||
67 | */ |
||
68 | private $id; |
||
69 | |||
70 | /** |
||
71 | * @ORM\OneToOne(targetEntity=GH7719Husband::class, mappedBy="wife", cascade={"persist"}) |
||
72 | */ |
||
73 | private $husband; |
||
74 | |||
75 | public function setHusband(GH7719Husband $husband): void |
||
79 | } |
||
80 | |||
81 | public function getHusband(): GH7719Husband |
||
86 |