/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
tests/Integration/Auth/Fixtures/AuthenticationTestUser.php
30 строк
596 B
Mior Muhammad Zaki
Add Forgot Password Integration tests (#39681)
18 ноя 2021, 18:26
Не верифицирован
18 ноя 2021, 18:26
7b782c9
Код
Авторство
О чём код?
<?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', ]; }