/
home
/
techb158
/
exp.abdallabala.com
/
vendor
/
illuminate
/
contracts
/
Notifications
/
/home/techb158/exp.abdallabala.com/vendor/illuminate/contracts/Notifications
mkdir
upload
Name
Size
Mode
Actions
Dispatcher.php
612
0644
edit
dl
rm
Factory.php
770
0644
edit
dl
rm
Edit:
/home/techb158/exp.abdallabala.com/vendor/illuminate/contracts/Notifications/Factory.php
(770B)
<?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|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