You are here

public function SmsMessage::removeRecipient in SMS Framework 8

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

Removes a single recipient from the SMS message.

Parameters

string $recipient: The recipient to remove.

Return value

$this The called SMS message object.

Overrides SmsMessageInterface::removeRecipient

File

src/Entity/SmsMessage.php, line 96

Class

SmsMessage
Defines the SMS message entity.

Namespace

Drupal\sms\Entity

Code

public function removeRecipient($recipient) {
  $this->recipient_phone_number
    ->filter(function ($item) use ($recipient) {
    return $item->value != $recipient;
  });
  return $this;
}