Total Complexity | 4 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | #[ORM\Entity] |
||
11 | final class SelfSupport extends AbstractModel |
||
12 | { |
||
13 | private $sibling; |
||
14 | |||
15 | public function getSibling(): ?self |
||
16 | { |
||
17 | return $this->sibling; |
||
18 | } |
||
19 | |||
20 | public function setSibling(self $sibling): void |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @return null|self |
||
27 | */ |
||
28 | public function getSiblingViaPhpDoc() |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @param self $sibling |
||
35 | */ |
||
36 | public function setSiblingViaPhpDoc($sibling): void |
||
39 | } |
||
40 | } |
||
41 |