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