Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 3 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
UpdateHubspotContact | |
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\Queue\SerializesModels; |
6 | use Illuminate\Broadcasting\InteractsWithSockets; |
7 | use Illuminate\Foundation\Events\Dispatchable; |
8 | |
9 | class UpdateHubspotContact |
10 | { |
11 | use Dispatchable, InteractsWithSockets, SerializesModels; |
12 | |
13 | public $source; |
14 | |
15 | public $user_email; |
16 | |
17 | public $properties; |
18 | |
19 | public function __construct($source, $user_email, $properties) |
20 | { |
21 | $this->source = $source; |
22 | $this->user_email = $user_email; |
23 | $this->properties = $properties; |
24 | } |
25 | } |