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