User
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 5
c 1
b 0
f 0
dl 0
loc 6
wmc 0
1
<?php
2
3
namespace App\Infrastructure\Foundation\Auth;
4
5
use App\Infrastructure\Database\Eloquent\Model;
6
use Illuminate\Auth\Authenticatable;
7
use Illuminate\Auth\MustVerifyEmail;
8
use Illuminate\Auth\Passwords\CanResetPassword;
9
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
10
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
11
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
12
use Illuminate\Foundation\Auth\Access\Authorizable;
13
14
class User extends Model implements
15
    AuthenticatableContract,
16
    AuthorizableContract,
17
    CanResetPasswordContract
18
{
19
    use Authenticatable, Authorizable, CanResetPassword, MustVerifyEmail;
0 ignored issues
show
Bug introduced by
The trait Illuminate\Auth\Passwords\CanResetPassword requires the property $email which is not provided by App\Infrastructure\Foundation\Auth\User.
Loading history...
Bug introduced by
The trait Illuminate\Auth\Authenticatable requires the property $password which is not provided by App\Infrastructure\Foundation\Auth\User.
Loading history...
introduced by
The trait Illuminate\Auth\MustVerifyEmail requires some properties which are not provided by App\Infrastructure\Foundation\Auth\User: $email_verified_at, $email
Loading history...
20
}
21