public function SmsMessage::setGateway in SMS Framework 8
Same name in this branch
- 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::setGateway()
- 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setGateway()
Same name and namespace in other branches
- 2.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::setGateway()
- 2.1.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::setGateway()
Set the gateway for this message.
Parameters
\Drupal\sms\Entity\SmsGatewayInterface $gateway: A gateway plugin instance.
Return value
$this Return SMS message for chaining.
Overrides SmsMessageInterface::setGateway
File
- src/
Message/ SmsMessage.php, line 214
Class
- SmsMessage
- Basic implementation of an SMS message.
Namespace
Drupal\sms\MessageCode
public function setGateway(SmsGatewayInterface $gateway) {
$this->gateway = $gateway;
return $this;
}