public function SmsMessage::removeRecipient in SMS Framework 2.x
Same name in this branch
- 2.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::removeRecipient()
- 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::removeRecipient()
Same name and namespace in other branches
- 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::removeRecipient()
- 2.1.x src/Message/SmsMessage.php \Drupal\sms\Message\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/
Message/ SmsMessage.php, line 193
Class
- SmsMessage
- Basic implementation of an SMS message.
Namespace
Drupal\sms\MessageCode
public function removeRecipient($recipient) {
$this->recipients = array_values(array_diff($this->recipients, [
$recipient,
]));
return $this;
}