/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Contracts/Notifications/Dispatcher.php
25 строк
662 B
Amir Hossein Shokri
clean up redundant type hints in docblocks (#56690)
20 авг 2025, 16:36
Не верифицирован
20 авг 2025, 16:36
66d6f8f
Код
Авторство
О чём код?
<?php namespace Illuminate\Contracts\Notifications; interface Dispatcher { /** * Send the given notification to the given notifiable entities. * * @param \Illuminate\Support\Collection|mixed $notifiables * @param mixed $notification * @return void */ public function send($notifiables, $notification); /** * Send the given notification immediately. * * @param \Illuminate\Support\Collection|mixed $notifiables * @param mixed $notification * @param array|null $channels * @return void */ public function sendNow($notifiables, $notification, ?array $channels = null); }