mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-calendar-module.git
synced 2026-07-16 00:12:11 +08:00
12 lines
No EOL
281 B
PHP
12 lines
No EOL
281 B
PHP
<?php
|
|
|
|
namespace Modules\LJPcCalendarModule\Events;
|
|
|
|
use Illuminate\Broadcasting\Channel;
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcastNow;
|
|
|
|
class CalendarUpdatedEvent implements ShouldBroadcastNow {
|
|
public function broadcastOn() {
|
|
return new Channel( 'calendar' );
|
|
}
|
|
} |