You are here

public function SmsGateway::setPushIncomingPath in SMS Framework 2.1.x

Same name and namespace in other branches
  1. 8 src/Entity/SmsGateway.php \Drupal\sms\Entity\SmsGateway::setPushIncomingPath()
  2. 2.x src/Entity/SmsGateway.php \Drupal\sms\Entity\SmsGateway::setPushIncomingPath()

Set the internal path where incoming messages are received.

Parameters

string|null $path: The internal path where incoming messages are received.

Return value

$this Return this gateway for chaining.

Overrides SmsGatewayInterface::setPushIncomingPath

File

src/Entity/SmsGateway.php, line 229

Class

SmsGateway
Defines storage for an SMS Gateway instance.

Namespace

Drupal\sms\Entity

Code

public function setPushIncomingPath($path) {
  $this->incoming_push_path = $path;
  return $this;
}