public function SmsDeliveryReport::getRecipient in SMS Framework 2.1.x
Same name in this branch
- 2.1.x src/Message/SmsDeliveryReport.php \Drupal\sms\Message\SmsDeliveryReport::getRecipient()
- 2.1.x src/Entity/SmsDeliveryReport.php \Drupal\sms\Entity\SmsDeliveryReport::getRecipient()
Same name and namespace in other branches
- 8 src/Entity/SmsDeliveryReport.php \Drupal\sms\Entity\SmsDeliveryReport::getRecipient()
- 2.x src/Entity/SmsDeliveryReport.php \Drupal\sms\Entity\SmsDeliveryReport::getRecipient()
Gets the recipient for the message.
Return value
string The recipient for the message.
Overrides SmsDeliveryReportInterface::getRecipient
File
- src/
Entity/ SmsDeliveryReport.php, line 63
Class
- SmsDeliveryReport
- Defines the SMS message delivery report entity.
Namespace
Drupal\sms\EntityCode
public function getRecipient() {
return $this
->get('recipient')->value;
}