/**
  * Send the notifications.
  *
  * @param  \Illuminate\Notifications\ChannelManager  $manager
  * @return void
  */
 public function handle(ChannelManager $manager)
 {
     $manager->sendNow($this->notifiables, $this->notification, $this->channels);
 }
Exemple #2
0
 /**
  * Get all of the created "drivers".
  *
  * @return array 
  * @static 
  */
 public static function getDrivers()
 {
     //Method inherited from \Illuminate\Support\Manager
     return \Illuminate\Notifications\ChannelManager::getDrivers();
 }