| Total Complexity | 3 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 13 | class GedComProgressSent implements ShouldBroadcast |
||
| 14 | { |
||
| 15 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
|
|
|||
| 16 | |||
| 17 | public $slug; |
||
| 18 | public $total; |
||
| 19 | public $complete; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Create a new event instance. |
||
| 23 | * |
||
| 24 | * @return void |
||
| 25 | */ |
||
| 26 | public function __construct($slug, $total, $complete) |
||
| 27 | { |
||
| 28 | $this->slug = $slug; |
||
| 29 | $this->total = $total; |
||
| 30 | $this->complete = $complete; |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Get the channels the event should broadcast on. |
||
| 35 | * |
||
| 36 | * @return \Illuminate\Broadcasting\Channel|array |
||
| 37 | */ |
||
| 38 | public function broadcastOn() |
||
| 41 | } |
||
| 42 | |||
| 43 | public function broadcastAs() |
||
| 46 | } |
||
| 47 | } |
||
| 48 |