| Total Complexity | 10 |
| Total Lines | 60 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | trait HookEntityTrait |
||
| 20 | { |
||
| 21 | public function getId(): int |
||
| 24 | } |
||
| 25 | |||
| 26 | public function setId(int $id): self |
||
| 27 | { |
||
| 28 | $this->id = $id; |
||
|
|
|||
| 29 | |||
| 30 | return $this; |
||
| 31 | } |
||
| 32 | |||
| 33 | public function getSowner(): string |
||
| 36 | } |
||
| 37 | |||
| 38 | public function setSowner(string $sowner): self |
||
| 39 | { |
||
| 40 | $this->sowner = $sowner; |
||
| 41 | |||
| 42 | return $this; |
||
| 43 | } |
||
| 44 | |||
| 45 | public function getPowner(): string |
||
| 46 | { |
||
| 47 | return $this->powner; |
||
| 48 | } |
||
| 49 | |||
| 50 | public function setPowner(string $powner): self |
||
| 51 | { |
||
| 52 | $this->powner = $powner; |
||
| 53 | |||
| 54 | return $this; |
||
| 55 | } |
||
| 56 | |||
| 57 | public function getSareaid(): string |
||
| 60 | } |
||
| 61 | |||
| 62 | public function setSareaid(string $subscriberAreaId): self |
||
| 63 | { |
||
| 64 | $this->sareaid = $subscriberAreaId; |
||
| 65 | |||
| 66 | return $this; |
||
| 67 | } |
||
| 68 | |||
| 69 | public function getPareaid(): string |
||
| 70 | { |
||
| 71 | return $this->pareaid; |
||
| 72 | } |
||
| 73 | |||
| 74 | public function setPareaid(string $providerAreaId): self |
||
| 79 | } |
||
| 80 | } |
||
| 81 |