Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class EnvironmentSaved implements ShouldQueue |
||
15 | { |
||
16 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
|
|||
17 | |||
18 | /** |
||
19 | * @var Request |
||
20 | */ |
||
21 | private Request $request; |
||
22 | |||
23 | /** |
||
24 | * Create a new event instance. |
||
25 | * |
||
26 | * @param Request $request |
||
27 | * @return void |
||
28 | */ |
||
29 | public function __construct(Request $request) |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @return Request |
||
36 | */ |
||
37 | public function getRequest() |
||
42 |