for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace LaravelFreelancerNL\Aranguent\Auth;
use Illuminate\Auth\Authenticatable;
use Illuminate\Auth\MustVerifyEmail;
use Illuminate\Auth\Passwords\CanResetPassword;
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
use Illuminate\Foundation\Auth\Access\Authorizable;
use LaravelFreelancerNL\Aranguent\Eloquent\Model as AranguentModel;
class User extends AranguentModel implements AuthenticatableContract, AuthorizableContract, CanResetPasswordContract
{
use Authenticatable;
use Authorizable;
use CanResetPassword;
Illuminate\Auth\Passwords\CanResetPassword
$email
LaravelFreelancerNL\Aranguent\Auth\User
use MustVerifyEmail;
Illuminate\Auth\MustVerifyEmail
$email_verified_at
}