Issues (465)

app/Events/ChatMessageSentEvent.php (1 issue)

Severity
1
<?php
2
3
namespace App\Events;
4
5
use Illuminate\Broadcasting\Channel;
6
use Illuminate\Broadcasting\InteractsWithSockets;
7
use Illuminate\Broadcasting\PresenceChannel;
8
use Illuminate\Broadcasting\PrivateChannel;
9
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
10
use Illuminate\Foundation\Events\Dispatchable;
11
use Illuminate\Queue\SerializesModels;
12
13
class ChatMessageSentEvent implements ShouldBroadcast
14
{
15
    use Dispatchable, InteractsWithSockets, SerializesModels;
0 ignored issues
show
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by App\Events\ChatMessageSentEvent: $id, $relations, $class, $connection, $keyBy
Loading history...
16
17
    /**
18
     * Create a new event instance.
19
     *
20
     * @return void
21
     */
22
    public function __construct()
23
    {
24
        //
25
    }
26
27
    /**
28
     * Get the channels the event should broadcast on.
29
     *
30
     * @return \Illuminate\Broadcasting\Channel|array
31
     */
32
    public function broadcastOn()
33
    {
34
        //return new PrivateChannel('channel-name');
35
        return new Channel('chat-channel');
36
    }
37
38
    public function broadcastWith()
39
    {
40
        return [
41
            'data' => 'key',
42
        ];
43
    }
44
}
45