You are here

public function SmsDeliveryReport::getRecipient in SMS Framework 2.1.x

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

Gets the recipient for the message.

Return value

string The recipient for the message.

Overrides SmsDeliveryReportInterface::getRecipient

File

src/Message/SmsDeliveryReport.php, line 82

Class

SmsDeliveryReport
A value object that holds the SMS delivery report.

Namespace

Drupal\sms\Message

Code

public function getRecipient() {
  return $this->recipient;
}