/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Auth/Events/Attempting.php
20 строк
476 B
Andrew Brown
[12.x] remove `@return` docblocks on constructors (#55076)
19 мар 2025, 23:10
Не верифицирован
19 мар 2025, 23:10
8f0e00b
Код
Авторство
О чём код?
<?php namespace Illuminate\Auth\Events; class Attempting { /** * Create a new event instance. * * @param string $guard The authentication guard name. * @param array $credentials The credentials for the user. * @param bool $remember Indicates if the user should be "remembered". */ public function __construct( public $guard, #[\SensitiveParameter] public $credentials, public $remember, ) { } }