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