Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class ImportFinished |
||
13 | { |
||
14 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
|
|||
15 | /** |
||
16 | * @var Import |
||
17 | */ |
||
18 | public $import; |
||
19 | |||
20 | /** |
||
21 | * Create a new event instance. |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | public function __construct(Import $import) |
||
26 | { |
||
27 | // |
||
28 | $this->import = $import; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Get the channels the event should broadcast on. |
||
33 | * |
||
34 | * @return \Illuminate\Broadcasting\Channel|array |
||
35 | */ |
||
36 | public function broadcastOn() |
||
39 | } |
||
40 | } |
||
41 |