Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
SignupFormSubmissionHubspot
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
1
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}