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.
2 parents d26ec5b + 1d58d4c commit c4e23cbCopy full SHA for c4e23cb
doc/api.md
@@ -231,7 +231,7 @@ $response = $push()
231
$platform = array('ios', 'android');
232
$alert = 'Hello JPush';
233
$tag = array('tag1', 'tag2');
234
-$regId = arrag('rid1', 'rid2');
+$regId = array('rid1', 'rid2');
235
$ios_notification = array(
236
'sound' => 'hello jpush',
237
'badge' => 2,
@@ -271,7 +271,7 @@ $response = $push->setPlatform($platform)
271
->iosNotification($alert, $ios_notification)
272
->androidNotification($alert, $android_notification)
273
->message($content, $message)
274
- ->options($options);
+ ->options($options)
275
->send();
276
```
277
0 commit comments