public function SmsDeliveryReport::getTimeDelivered in SMS Framework 2.1.x
Same name in this branch
- 2.1.x src/Message/SmsDeliveryReport.php \Drupal\sms\Message\SmsDeliveryReport::getTimeDelivered()
- 2.1.x src/Entity/SmsDeliveryReport.php \Drupal\sms\Entity\SmsDeliveryReport::getTimeDelivered()
Same name and namespace in other branches
- 8 src/Message/SmsDeliveryReport.php \Drupal\sms\Message\SmsDeliveryReport::getTimeDelivered()
- 2.x src/Message/SmsDeliveryReport.php \Drupal\sms\Message\SmsDeliveryReport::getTimeDelivered()
Gets the time the message was delivered to the recipient.
Return value
int|null The timestamp when the message was delivered to the recipient, or NULL if unknown.
Overrides SmsDeliveryReportInterface::getTimeDelivered
File
- src/
Message/ SmsDeliveryReport.php, line 142
Class
- SmsDeliveryReport
- A value object that holds the SMS delivery report.
Namespace
Drupal\sms\MessageCode
public function getTimeDelivered() {
return $this->timeDelivered;
}