sendGroup() public method

Get the the send group instance.
public sendGroup ( string $groupName, array $info ) : SendGroup
$groupName string
$info array
return SendGroup
Example #1
0
 /**
  * Send a group of notifications
  * at once
  *
  * @param        $group_name
  * @param  array $info
  * @return mixed
  */
 public function sendGroup($group_name, $info = [])
 {
     return $this->senderFactory->sendGroup($group_name, $info)->send($this->storeNotification);
 }