Skip to content

Commit

Permalink
Update PushNotification.php
Browse files Browse the repository at this point in the history
  • Loading branch information
ChafikHadjAbdouRazack authored Oct 30, 2022
1 parent aa97644 commit fc3689a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@ public function __construct($apiKey)
);
}

public function setMessage($title, $body, $vibration, $sound,$priority){
public function setMessage($title, $body, $vibration, $sound,$priority,$tag){

$this->message = array(
'title'=>$title,
'body'=>$body,
'vibrate'=>$vibration,
'sound'=>$sound,
'tag'=>$tag
'priority'=>$priority
);
}
Expand Down

0 comments on commit fc3689a

Please sign in to comment.