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