You are here

public function SmsMessage::removeRecipients in SMS Framework 8

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

Removes multiple recipients from the SMS message.

Parameters

array $recipients: An array of recipients to remove.

Return value

$this The called SMS message object.

Overrides SmsMessageInterface::removeRecipients

File

src/Message/SmsMessage.php, line 199

Class

SmsMessage
Basic implementation of an SMS message.

Namespace

Drupal\sms\Message

Code

public function removeRecipients(array $recipients) {
  $this->recipients = array_values(array_diff($this->recipients, $recipients));
  return $this;
}