/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
tests/Integration/Auth/Fixtures/Models/Nested/SubTestUser.php
27 строк
537 B
Jason McCreary
Auto-discover nested policies following conventional, parallel hierarchy (#54493)
07 фев 2025, 00:25
Не верифицирован
07 фев 2025, 00:25
54f5cde
Код
Авторство
О чём код?
<?php namespace Illuminate\Tests\Integration\Auth\Fixtures\Models\Nested; use Illuminate\Foundation\Auth\User as Authenticatable; class SubTestUser extends Authenticatable { 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', ]; }