Test Failed
Push — dev6 ( bf43a6...5a7ea5 )
by Ron
16:37
created

LogSettingsUpdatedEvent::broadcastOn()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
namespace App\Events\Admin;
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 LogSettingsUpdatedEvent
14
{
15
    use Dispatchable, InteractsWithSockets, SerializesModels;
16
17
    public $logSettings;
18
19
    /**
20
     * Create a new event instance.
21
     *
22
     * @return void
23
     */
24
    public function __construct($logSettings)
25
    {
26
        $this->logSettings = $logSettings;
27
    }
28
29
    /**
30
     * Get the channels the event should broadcast on.
31
     *
32
     * @return \Illuminate\Broadcasting\Channel|array
33
     */
34
    public function broadcastOn()
35
    {
36
        return new PrivateChannel('channel-name');
37
    }
38
}
39