1 | <?php |
||
17 | class EventManagerData implements EventEditorDataInterface |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * @var EventManagers |
||
22 | */ |
||
23 | private $event_managers; |
||
24 | |||
25 | /** |
||
26 | * @var Utilities |
||
27 | */ |
||
28 | private $utilities; |
||
29 | |||
30 | |||
31 | /** |
||
32 | * EventManagerRoles constructor. |
||
33 | * |
||
34 | * @param EventManagers $event_managers |
||
35 | * @param Utilities $utilities |
||
36 | */ |
||
37 | public function __construct(EventManagers $event_managers, Utilities $utilities) |
||
42 | |||
43 | |||
44 | /** |
||
45 | * @param int $eventId |
||
46 | * @return array |
||
47 | */ |
||
48 | public function getData(int $eventId): array |
||
62 | } |
||
63 |