| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Illuminate\Tests\Integration\Auth\Fixtures;
- use Illuminate\Foundation\Auth\User as Authenticatable;
- use Illuminate\Notifications\Notifiable;
- class AuthenticationTestUser extends Authenticatable
- {
- use Notifiable;
- public $table = 'users';
- public $timestamps = false;
- /**
- * The attributes that aren't mass assignable.
- *
- * @var string[]
- */
- protected $guarded = [];
- /**
- * The attributes that should be hidden for arrays.
- *
- * @var string[]
- */
- protected $hidden = [
- 'password', 'remember_token',
- ];
- }
|