| 1 | <?php |
||
| 19 | trait OrganizationAwareTrait |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var OrganizationInterface|null |
||
| 23 | */ |
||
| 24 | protected $organization; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function getOrganization() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function setOrganization(?OrganizationInterface $organization) |
||
| 41 | } |
||
| 42 |