Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | trait Organization |
||
11 | { |
||
12 | /** |
||
13 | * Set organization |
||
14 | * |
||
15 | * @param \App\Entity\Organization $organization |
||
16 | * @return object |
||
17 | */ |
||
18 | public function setOrganization(OrganizationEntity $organization = null) |
||
19 | { |
||
20 | $this->organization = $organization; |
||
|
|||
21 | |||
22 | return $this; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Get organization |
||
27 | * |
||
28 | * @return \App\Entity\Organization |
||
29 | */ |
||
30 | public function getOrganization() |
||
33 | } |
||
34 | } |
||
35 |