Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
InstancyUserUpdate
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3namespace App\Events;
4
5use Illuminate\Broadcasting\InteractsWithSockets;
6use Illuminate\Foundation\Events\Dispatchable;
7use Illuminate\Queue\SerializesModels;
8
9class InstancyUserUpdate
10{
11    use Dispatchable, InteractsWithSockets, SerializesModels;
12
13    public $instancyUser;
14
15    /**
16     * Create a new event instance.
17     */
18    public function __construct($instancyUser)
19    {
20        $this->instancyUser = $instancyUser;
21    }
22}