Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $notification = array
  2. (
  3. 'body' => 'test',
  4. 'title' => 'test',
  5. "icon" => 'notification_icon',
  6. "content_available" => "1",
  7. "force-start" => 1
  8. );
  9.  
  10. $data = array
  11. (
  12. "title" => "test",
  13. "body" => "test",
  14. "icon" => "notification_icon",
  15. "content_available" => "1",
  16. "force-start" => 1
  17. );
  18.  
  19. $fields = array
  20. (
  21. 'registration_ids' => $registrationIds,
  22. 'notification' => $notification,
  23. 'data' => $data,
  24. "priority" => "high",
  25. "content_available" => true
  26. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement