Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class NewFeedback implements ShouldBroadcast |
||
15 | { |
||
16 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
|
|||
17 | |||
18 | public $feedback; |
||
19 | |||
20 | /** |
||
21 | * Create a new event instance. |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | public function __construct(Feedback $feedback) |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Get the channels the event should broadcast on. |
||
32 | * |
||
33 | * @return \Illuminate\Broadcasting\Channel|array |
||
34 | */ |
||
35 | public function broadcastOn() |
||
40 |