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/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setDirection()
  2. 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\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/Entity/SmsMessage.php, line 326

Class

SmsMessage
Defines the SMS message entity.

Namespace

Drupal\sms\Entity

Code

public function setDirection($direction) {
  $this
    ->set('direction', $direction);
  return $this;
}