PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
illuminate
/
contracts
/
Notifications
<?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); }
[+]
..
[-] Dispatcher.php
[edit]
[-] Factory.php
[edit]