Passed
Push — dev6 ( 38538a...e3b17c )
by Ron
20:02
created

SuccessfulResetEmailAttempt   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 4
c 1
b 0
f 0
dl 0
loc 14
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace App\Events;
4
5
use Illuminate\Broadcasting\Channel;
6
use Illuminate\Broadcasting\InteractsWithSockets;
7
use Illuminate\Broadcasting\PresenceChannel;
8
use Illuminate\Broadcasting\PrivateChannel;
9
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
10
use Illuminate\Foundation\Events\Dispatchable;
11
use Illuminate\Queue\SerializesModels;
12
13
class SuccessfulResetEmailAttempt
14
{
15
    use Dispatchable, InteractsWithSockets, SerializesModels;
16
17
    public $email;
18
19
    /**
20
     * Create a new event instance.
21
     *
22
     * @return void
23
     */
24
    public function __construct($email)
25
    {
26
        $this->email = $email;
27
    }
28
}
29