Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
SignupFormSubmissionHubspot | |
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\Hubspot; |
4 | |
5 | use Illuminate\Broadcasting\InteractsWithSockets; |
6 | use Illuminate\Foundation\Events\Dispatchable; |
7 | use Illuminate\Queue\SerializesModels; |
8 | use Illuminate\Support\Facades\Log; |
9 | |
10 | class SignupFormSubmissionHubspot |
11 | { |
12 | use Dispatchable, InteractsWithSockets, SerializesModels; |
13 | |
14 | public $first_name; |
15 | |
16 | public $last_name; |
17 | |
18 | public $email; |
19 | |
20 | /** |
21 | * Create a new event instance. |
22 | * |
23 | * @return void |
24 | */ |
25 | public function __construct($first_name, $last_name, $email) { |
26 | $this->first_name = $first_name; |
27 | $this->last_name = $last_name; |
28 | $this->email = $email; |
29 | } |
30 | } |