You are here

public function SmsMessage::getRecipients in SMS Framework 8

Same name in this branch
  1. 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::getRecipients()
  2. 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getRecipients()
Same name and namespace in other branches
  1. 2.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::getRecipients()
  2. 2.1.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::getRecipients()

Gets the list of recipients of this SMS message.

Return value

array The list of recipients of this SMS message.

Overrides SmsMessageInterface::getRecipients

1 call to SmsMessage::getRecipients()
SmsMessage::chunkByRecipients in src/Message/SmsMessage.php
Split this SMS message into new messages by chunks of recipients.

File

src/Message/SmsMessage.php, line 164

Class

SmsMessage
Basic implementation of an SMS message.

Namespace

Drupal\sms\Message

Code

public function getRecipients() {
  return $this->recipients;
}