1 | <?php |
||
9 | class OkEvent extends Event |
||
10 | { |
||
11 | use SerializesModels; |
||
12 | |||
13 | /** |
||
14 | * @var Caldav |
||
15 | */ |
||
16 | private $calendar; |
||
17 | |||
18 | /** |
||
19 | * CaldavSyncOkEvent constructor. |
||
20 | * @param Caldav $calendar |
||
21 | */ |
||
22 | public function __construct(Caldav $calendar) |
||
26 | |||
27 | /** |
||
28 | * @return Caldav |
||
29 | */ |
||
30 | public function getCalendar() |
||
34 | |||
35 | /** |
||
36 | * Get the channels the event should be broadcast on. |
||
37 | * |
||
38 | * @return array |
||
39 | */ |
||
40 | public function broadcastOn() |
||
44 | } |
||
45 |