public function SmsMessage::setDirection in SMS Framework 8
Same name in this branch
- 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::setDirection()
- 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setDirection()
Same name and namespace in other branches
- 2.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::setDirection()
- 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\MessageCode
public function setDirection($direction) {
$this->direction = $direction;
return $this;
}