Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
FlyCutSharedEvent | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace App\Events\User; |
4 | |
5 | use Illuminate\Foundation\Events\Dispatchable; |
6 | use Illuminate\Queue\SerializesModels; |
7 | |
8 | class FlyCutSharedEvent |
9 | { |
10 | use Dispatchable, SerializesModels; |
11 | |
12 | /** |
13 | * @var \App\Http\Models\FlyShare |
14 | */ |
15 | public $flyshare; |
16 | |
17 | /** |
18 | * @var array |
19 | */ |
20 | public $recipientEmails; |
21 | |
22 | /** |
23 | * @var string |
24 | */ |
25 | public $firstName; |
26 | |
27 | /** |
28 | * @var string |
29 | */ |
30 | public $lastName; |
31 | |
32 | /** |
33 | * @var string |
34 | */ |
35 | public $message; |
36 | |
37 | /** |
38 | * Create a new event instance. |
39 | * |
40 | * @return void |
41 | */ |
42 | public function __construct($flyshare, $recipientEmails, $firstName, $lastName, $message) |
43 | { |
44 | $this->flyshare = $flyshare; |
45 | $this->recipientEmails = $recipientEmails; |
46 | $this->firstName = $firstName; |
47 | $this->lastName = $lastName; |
48 | $this->message = $message; |
49 | } |
50 | } |