interface SmsIncomingEventInterface in SMS Framework 8
Same name and namespace in other branches
- 2.x src/Plugin/SmsGateway/SmsIncomingEventInterface.php \Drupal\sms\Plugin\SmsGateway\SmsIncomingEventInterface
- 2.1.x src/Plugin/SmsGateway/SmsIncomingEventInterface.php \Drupal\sms\Plugin\SmsGateway\SmsIncomingEventInterface
Interface for gateways implementing an incoming event subscriber.
Hierarchy
- interface \Drupal\sms\Plugin\SmsGateway\SmsIncomingEventInterface
Expanded class hierarchy of SmsIncomingEventInterface
All classes that implement SmsIncomingEventInterface
File
- src/
Plugin/ SmsGateway/ SmsIncomingEventInterface.php, line 10
Namespace
Drupal\sms\Plugin\SmsGatewayView source
interface SmsIncomingEventInterface {
/**
* Process a SMS message from this gateway.
*
* @param \Drupal\sms\Event\SmsMessageEvent $event
* The event.
*/
public function incomingEvent(SmsMessageEvent $event);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SmsIncomingEventInterface:: |
public | function | Process a SMS message from this gateway. |