| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class User extends Model implements AuthorizableContract, AuthenticatableContract |
||
| 14 | { |
||
| 15 | use Authorizable; |
||
| 16 | use Authenticatable; |
||
|
|
|||
| 17 | use HasFactory; |
||
| 18 | use HasRoleAndPermission; |
||
| 19 | |||
| 20 | protected $guarded = []; |
||
| 21 | |||
| 22 | protected $table = 'users'; |
||
| 23 | |||
| 24 | protected static function newFactory() |
||
| 29 |