We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d2ad26 commit d623adbCopy full SHA for d623adb
README.md
@@ -112,7 +112,8 @@ check for the `Notification` message type.
112
113
```php
114
if ($message['Type'] === 'Notification') {
115
- // Do whatever you want with the message body.
+ // Do whatever you want with the message body and data.
116
+ echo $message['MessageId'] . ': ' . $message['Message'] . "\n";
117
}
118
```
119
0 commit comments