You are here

public function SmsMessage::getResult in SMS Framework 8

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

Get the result associated with this SMS message.

Return value

\Drupal\sms\Message\SmsMessageResultInterface|null The result associated with this SMS message, or NULL if there is no result.

Overrides SmsMessageInterface::getResult

File

src/Message/SmsMessage.php, line 270

Class

SmsMessage
Basic implementation of an SMS message.

Namespace

Drupal\sms\Message

Code

public function getResult() {
  return $this->result;
}