Completed
Push — master ( bf8855...0ad56c )
by Antonio Carlos
01:37
created

OneTimePasswordRequested53   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 3
dl 0
loc 16
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace PragmaRX\Google2FALaravel\Events;
4
5
use Illuminate\Broadcasting\InteractsWithSockets;
6
use Illuminate\Foundation\Events\Dispatchable;
7
use Illuminate\Queue\SerializesModels;
8
9
class OneTimePasswordRequested53
10
{
11
    use Dispatchable, InteractsWithSockets, SerializesModels;
12
13
    public $user;
14
15
    /**
16
     * Create a new event instance.
17
     *
18
     * @param $user
19
     */
20
    public function __construct($user)
21
    {
22
        $this->user = $user;
23
    }
24
}
25