Файл: system/vendor/illuminate/contracts/Notifications/Dispatcher.php
Строк: 41
<?php
namespace IlluminateContractsNotifications;
interface Dispatcher
{
/**
* Send the given notification to the given notifiable entities.
*
* @param IlluminateSupportCollection|array|mixed $notifiables
* @param mixed $notification
* @return void
*/
public function send($notifiables, $notification);
/**
* Send the given notification immediately.
*
* @param IlluminateSupportCollection|array|mixed $notifiables
* @param mixed $notification
* @return void
*/
public function sendNow($notifiables, $notification);
}