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