User
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 2
c 1
b 0
f 0
dl 0
loc 3
ccs 0
cts 0
cp 0
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * @author enea dhack <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Enea\Authorization\Models;
13
14
use Enea\Authorization\Contracts\Authorizable as AuthorizableContract;
15
use Enea\Authorization\Traits\Authorizable;
16
use Illuminate\Auth\Authenticatable;
17
use Illuminate\Auth\Passwords\CanResetPassword;
18
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
19
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
20
use Illuminate\Database\Eloquent\Model;
21
22
class User extends Model implements AuthenticatableContract, CanResetPasswordContract, AuthorizableContract
23
{
24
    use Authenticatable, CanResetPassword, Authorizable;
25
}
26