public function SmsProviderInterface::processDeliveryReport in SMS Framework 8
Same name and namespace in other branches
- 2.x src/Provider/SmsProviderInterface.php \Drupal\sms\Provider\SmsProviderInterface::processDeliveryReport()
- 2.1.x src/Provider/SmsProviderInterface.php \Drupal\sms\Provider\SmsProviderInterface::processDeliveryReport()
Handles delivery reports pushed to the site.
Parameters
\Symfony\Component\HttpFoundation\Request $request: The HTTP request that contains the delivery report.
\Drupal\sms\Entity\SmsGatewayInterface $gateway: The gateway designated to process the delivery report.
1 method overrides SmsProviderInterface::processDeliveryReport()
- DefaultSmsProvider::processDeliveryReport in src/
Provider/ DefaultSmsProvider.php - Handles delivery reports pushed to the site.
File
- src/
Provider/ SmsProviderInterface.php, line 67
Class
- SmsProviderInterface
- Provides an interface for sending messages.
Namespace
Drupal\sms\ProviderCode
public function processDeliveryReport(Request $request, SmsGatewayInterface $gateway);