You are here

public function SmsMessage::setDirection in SMS Framework 8

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

Set direction of the message.

Parameters

int $direction: Any of \Drupal\sms\Direction constants.

Return value

$this Return SMS message for chaining.

Overrides SmsMessageInterface::setDirection

File

src/Message/SmsMessage.php, line 229

Class

SmsMessage
Basic implementation of an SMS message.

Namespace

Drupal\sms\Message

Code

public function setDirection($direction) {
  $this->direction = $direction;
  return $this;
}