You are here

public function SmsDeliveryReportInterface::setTimeDelivered in SMS Framework 2.1.x

Same name and namespace in other branches
  1. 8 src/Message/SmsDeliveryReportInterface.php \Drupal\sms\Message\SmsDeliveryReportInterface::setTimeDelivered()
  2. 2.x src/Message/SmsDeliveryReportInterface.php \Drupal\sms\Message\SmsDeliveryReportInterface::setTimeDelivered()

Sets the time the message was delivered to the recipient.

Parameters

int|null $time: The timestamp when the message was delivered to the recipient, or NULL if unknown.

Return value

$this Returns this report object for chaining.

2 methods override SmsDeliveryReportInterface::setTimeDelivered()
SmsDeliveryReport::setTimeDelivered in src/Message/SmsDeliveryReport.php
Sets the time the message was delivered to the recipient.
SmsDeliveryReport::setTimeDelivered in src/Entity/SmsDeliveryReport.php
Sets the time the message was delivered to the recipient.

File

src/Message/SmsDeliveryReportInterface.php, line 130

Class

SmsDeliveryReportInterface
Contains information about an SMS message.

Namespace

Drupal\sms\Message

Code

public function setTimeDelivered($time);