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