public function SmsMessage::getGateway in SMS Framework 8
Same name in this branch
- 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::getGateway()
- 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getGateway()
Same name and namespace in other branches
- 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::getGateway()
- 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\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/
Entity/ SmsMessage.php, line 334
Class
- SmsMessage
- Defines the SMS message entity.
Namespace
Drupal\sms\EntityCode
public function getGateway() {
return $this
->get('gateway')->entity;
}