/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Contracts/Notifications/Factory.php
32 строки
758 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 Factory { /** * Get a channel instance by name. * * @param string|null $name * @return mixed */ public function channel($name = null); /** * 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 * @return void */ public function sendNow($notifiables, $notification); }