|
@@ -1,37 +0,0 @@
|
|
|
-<?php
|
|
|
-
|
|
|
-namespace App\Events;
|
|
|
-
|
|
|
-use App\Models\ServerLog;
|
|
|
-use Illuminate\Broadcasting\Channel;
|
|
|
-use Illuminate\Queue\SerializesModels;
|
|
|
-use Illuminate\Broadcasting\PrivateChannel;
|
|
|
-use Illuminate\Broadcasting\PresenceChannel;
|
|
|
-use Illuminate\Foundation\Events\Dispatchable;
|
|
|
-use Illuminate\Broadcasting\InteractsWithSockets;
|
|
|
-use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
|
-
|
|
|
-class ServerCreatedEvent
|
|
|
-{
|
|
|
- use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
-
|
|
|
- public $serverLog;
|
|
|
- /**
|
|
|
- * Create a new event instance.
|
|
|
- *
|
|
|
- * @return void
|
|
|
- */
|
|
|
- public function __construct(ServerLog $serverLog) {
|
|
|
- $this->serverLog = $serverLog;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * Get the channels the event should broadcast on.
|
|
|
- *
|
|
|
- * @return \Illuminate\Broadcasting\Channel|array
|
|
|
- */
|
|
|
- public function broadcastOn()
|
|
|
- {
|
|
|
- return new PrivateChannel('channel-name');
|
|
|
- }
|
|
|
-}
|