Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class SelfSupport extends AbstractModel |
||
14 | { |
||
15 | private $sibling; |
||
16 | |||
17 | public function getSibling(): ?self |
||
20 | } |
||
21 | |||
22 | public function setSibling(self $sibling): void |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @return null|self |
||
29 | */ |
||
30 | public function getSiblingViaPhpDoc() |
||
31 | { |
||
32 | return $this->sibling; |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @param self $sibling |
||
37 | */ |
||
38 | public function setSiblingViaPhpDoc($sibling): void |
||
41 | } |
||
42 | } |
||
43 |