golden hour
/opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/illuminate/contracts/Notifications
⬆️ Go Up
Upload
File/Folder
Size
Actions
Dispatcher.php
692 B
Del
OK
Factory.php
787 B
Del
OK
Edit: Dispatcher.php
<?php namespace RectorPrefix202411\Illuminate\Contracts\Notifications; interface Dispatcher { /** * Send the given notification to the given notifiable entities. * * @param \Illuminate\Support\Collection|array|mixed $notifiables * @param mixed $notification * @return void */ public function send($notifiables, $notification); /** * Send the given notification immediately. * * @param \Illuminate\Support\Collection|array|mixed $notifiables * @param mixed $notification * @param array|null $channels * @return void */ public function sendNow($notifiables, $notification, ?array $channels = null); }
Save