Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
FlycutResharedEvent | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 3 |
|
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 FlycutResharedEvent |
9 | { |
10 | use Dispatchable, SerializesModels; |
11 | |
12 | /** |
13 | * @var \App\Http\Models\FlyShare |
14 | */ |
15 | public $flyshare; |
16 | |
17 | /** |
18 | * @var string |
19 | */ |
20 | public $recipientEmail; |
21 | |
22 | /** |
23 | * @var string |
24 | */ |
25 | public $clonedShortcutId; |
26 | |
27 | /** |
28 | * Create a new event instance. |
29 | * |
30 | * @return void |
31 | */ |
32 | public function __construct($flyshare, $recipientEmail, $clonedShortcutId) |
33 | { |
34 | $this->flyshare = $flyshare; |
35 | $this->recipientEmail = $recipientEmail; |
36 | $this->clonedShortcutId = $clonedShortcutId; |
37 | } |
38 | } |