Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
16 | class ContactImageMetadata extends ImageMetadata |
||
17 | { |
||
18 | /** |
||
19 | * @var Contact |
||
20 | */ |
||
21 | protected Contact $contact; |
||
22 | |||
23 | /** |
||
24 | * @return Contact |
||
25 | */ |
||
26 | public function getContact(): Contact |
||
29 | } |
||
30 | |||
31 | public function setContact(Contact $contact) |
||
32 | { |
||
33 | $this->contact = $contact; |
||
34 | return $this; |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @ODM\PreRemove |
||
39 | */ |
||
40 | public function preRemove() |
||
43 | } |
||
44 | } |