public function SmsMessage::removeRecipients in SMS Framework 2.x
Same name in this branch
- 2.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::removeRecipients()
- 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::removeRecipients()
Same name and namespace in other branches
- 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::removeRecipients()
- 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\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/
Entity/ SmsMessage.php, line 108
Class
- SmsMessage
- Defines the SMS message entity.
Namespace
Drupal\sms\EntityCode
public function removeRecipients(array $recipients) {
$this->recipient_phone_number
->filter(function ($item) use ($recipients) {
return !in_array($item->value, $recipients);
});
return $this;
}