We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba2f9cd commit 718d149Copy full SHA for 718d149
README.md
@@ -174,15 +174,19 @@ The `expired` key can be useful to clean your database of expired endpoints.
174
175
```php
176
$res = array(
177
- array( // first notification
+ array( // first notification (failed)
178
'success' => false,
179
'endpoint' => $theEndpointToDeleteInYourDatabaseIfExpired
180
+ 'message' => $responseMessage,
181
'statusCode' => $responseStatusCode,
182
'headers' => $responseHeaders,
183
'content' => $responseContent, // you may have more infos here
184
'expired' => $isTheEndpointWrongOrExpired,
185
),
- array( // second notification
186
+ array( // second notification (succeeded)
187
+ 'success' => true,
188
+ ),
189
+ array( // third notification
190
...
191
), ...
192
);
0 commit comments