You are here

public function SmsGateway::setPushReportPath in SMS Framework 8

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

Set the internal path where pushed delivery reports can be received.

Parameters

string $path: The internal path where pushed delivery reports can be received.

Return value

$this Return this gateway for chaining.

Overrides SmsGatewayInterface::setPushReportPath

File

src/Entity/SmsGateway.php, line 238

Class

SmsGateway
Defines storage for an SMS Gateway instance.

Namespace

Drupal\sms\Entity

Code

public function setPushReportPath($path) {
  $this->reports_push_path = $path;
  return $this;
}