| 1 | <?php |
||
| 13 | class SettingDeleted implements ShouldBroadcast |
||
| 14 | { |
||
| 15 | use Dispatchable, InteractsWithSockets; |
||
| 16 | |||
| 17 | public $setting; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Create a new event instance. |
||
| 21 | * |
||
| 22 | * @param $setting |
||
| 23 | */ |
||
| 24 | public function __construct(DbConfig $setting) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Get the channels the event should broadcast on. |
||
| 32 | * |
||
| 33 | * @return Channel|array |
||
| 34 | */ |
||
| 35 | public function broadcastOn() |
||
| 39 | } |
||
| 40 |