public function SmsGateway::setPushReportPath in SMS Framework 2.1.x
Same name and namespace in other branches
- 8 src/Entity/SmsGateway.php \Drupal\sms\Entity\SmsGateway::setPushReportPath()
- 2.x src/Entity/SmsGateway.php \Drupal\sms\Entity\SmsGateway::setPushReportPath()
Set the internal path where pushed delivery reports can be received.
Parameters
string|null $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 251
Class
- SmsGateway
- Defines storage for an SMS Gateway instance.
Namespace
Drupal\sms\EntityCode
public function setPushReportPath($path) {
$this->reports_push_path = $path;
return $this;
}