Fenos\Notifynder\Contracts\NotifynderSender::sendMultiple PHP Méthode

sendMultiple() public méthode

Send Multiple method to get fully working older version.
public sendMultiple ( $info ) : SendMultiple
$info
Résultat Fenos\Notifynder\Senders\SendMultiple
    public function sendMultiple($info);

Usage Example

 /**
  * Send multiple notifications.
  *
  * @param  array                $info
  * @return Senders\SendMultiple
  */
 public function sendMultiple($info = [])
 {
     $info = count($info) > 0 ? $info : $this->toArray();
     $notificationsSent = $this->notifynderSender->sendMultiple($info, $this->defaultCategory);
     $this->refresh();
     return $notificationsSent;
 }
All Usage Examples Of Fenos\Notifynder\Contracts\NotifynderSender::sendMultiple