/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Notifications/Events/NotificationFailed.php
27 строк
710 B
Andrew Brown
[12.x] remove `@return` docblocks on constructors (#55076)
19 мар 2025, 23:10
Не верифицирован
19 мар 2025, 23:10
8f0e00b
Код
Авторство
О чём код?
<?php namespace Illuminate\Notifications\Events; use Illuminate\Bus\Queueable; use Illuminate\Queue\SerializesModels; class NotificationFailed { use Queueable, SerializesModels; /** * Create a new event instance. * * @param mixed $notifiable The notifiable entity who received the notification. * @param \Illuminate\Notifications\Notification $notification The notification instance. * @param string $channel The channel name. * @param array $data The data needed to process this failure. */ public function __construct( public $notifiable, public $notification, public $channel, public $data = [], ) { } }