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