public function SmsMessage::removeOption in SMS Framework 2.x
Same name in this branch
- 2.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::removeOption()
- 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::removeOption()
Same name and namespace in other branches
- 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::removeOption()
- 2.1.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::removeOption()
Removes an option from this SMS message.
Parameters
string $name: The name of the option.
Return value
$this The called SMS message object.
Overrides SmsMessageInterface::removeOption
File
- src/
Message/ SmsMessage.php, line 264
Class
- SmsMessage
- Basic implementation of an SMS message.
Namespace
Drupal\sms\MessageCode
public function removeOption($name) {
unset($this->options[$name]);
return $this;
}