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: Factory.php
<?php namespace RectorPrefix202411\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|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 * @return void */ public function sendNow($notifiables, $notification); }
Save