1 | <?php |
||
7 | class BoardOrganizationEvent extends BoardEvent |
||
8 | { |
||
9 | /** |
||
10 | * @var OrganizationInterface |
||
11 | */ |
||
12 | protected $organization; |
||
13 | |||
14 | /** |
||
15 | * Set organization |
||
16 | * |
||
17 | * @param OrganizationInterface $organization |
||
18 | */ |
||
19 | public function setOrganization(OrganizationInterface $organization) |
||
23 | |||
24 | /** |
||
25 | * Get organization |
||
26 | * |
||
27 | * @return OrganizationInterface |
||
28 | */ |
||
29 | public function getOrganization() |
||
33 | } |
||
34 |