You are here

public function SmsMessage::getGateway in SMS Framework 8

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

Get the gateway for this message.

Return value

\Drupal\sms\Entity\SmsGatewayInterface|null A gateway plugin instance, or NULL to let the provider decide.

Overrides SmsMessageInterface::getGateway

File

src/Message/SmsMessage.php, line 207

Class

SmsMessage
Basic implementation of an SMS message.

Namespace

Drupal\sms\Message

Code

public function getGateway() {
  return $this->gateway;
}