Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 9 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
TrackFlyMsgAIUsageEvent | |
0.00% |
0 / 9 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 9 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace App\Events; |
4 | |
5 | use Illuminate\Queue\SerializesModels; |
6 | use Illuminate\Foundation\Events\Dispatchable; |
7 | use Illuminate\Broadcasting\InteractsWithSockets; |
8 | |
9 | class TrackFlyMsgAIUsageEvent |
10 | { |
11 | use Dispatchable, InteractsWithSockets, SerializesModels; |
12 | |
13 | public $user; |
14 | public $prompt_response; |
15 | public $browser; |
16 | public $button; |
17 | public $prompt; |
18 | public $feature; |
19 | public $uniqueId; |
20 | public $aiResult; |
21 | public $context; |
22 | |
23 | /** |
24 | * Create a new event instance. |
25 | * |
26 | * @return void |
27 | */ |
28 | public function __construct($user, $prompt_response, $browser, $button, $prompt, $feature, $uniqueId, $aiResult, $context) |
29 | { |
30 | $this->user = $user; |
31 | $this->prompt_response = $prompt_response; |
32 | $this->browser = $browser; |
33 | $this->button = $button; |
34 | $this->prompt = $prompt; |
35 | $this->feature = $feature; |
36 | $this->uniqueId = $uniqueId; |
37 | $this->aiResult = $aiResult; |
38 | $this->context = $context; |
39 | } |
40 | } |