You are here

public function SmsMessage::setGateway in SMS Framework 8

Same name in this branch
  1. 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::setGateway()
  2. 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setGateway()
Same name and namespace in other branches
  1. 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setGateway()
  2. 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\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/Entity/SmsMessage.php, line 341

Class

SmsMessage
Defines the SMS message entity.

Namespace

Drupal\sms\Entity

Code

public function setGateway(SmsGatewayInterface $gateway) {
  $this
    ->set('gateway', $gateway);
  return $this;
}