Total Complexity | 9 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | trait HookEntityTrait |
||
20 | { |
||
21 | public function getId(): int |
||
24 | } |
||
25 | |||
26 | public function setSowner(string $sowner): void |
||
27 | { |
||
28 | $this->sowner = $sowner; |
||
|
|||
29 | } |
||
30 | |||
31 | public function getSowner(): string |
||
34 | } |
||
35 | |||
36 | public function setPowner(string $powner): void |
||
37 | { |
||
38 | $this->powner = $powner; |
||
39 | } |
||
40 | |||
41 | public function getPowner(): string |
||
42 | { |
||
43 | return $this->powner; |
||
44 | } |
||
45 | |||
46 | public function setSareaid(string $subscriberAreaId): void |
||
47 | { |
||
48 | $this->sareaid = $subscriberAreaId; |
||
49 | } |
||
50 | |||
51 | public function getSareaid(): string |
||
54 | } |
||
55 | |||
56 | public function setPareaid(string $providerAreaId): void |
||
59 | } |
||
60 | |||
61 | public function getPareaid(): string |
||
64 | } |
||
65 | } |
||
66 |