Skip to content

Commit

Permalink
Update Fcm.php
Browse files Browse the repository at this point in the history
keep php5.6 support
  • Loading branch information
defji authored Oct 13, 2020
1 parent e7758a8 commit 120e335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Fcm.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function send()
{
$payloads = [
'content_available' => true,
'priority' => $this->priority ?? 'high',
'priority' => isset($this->priority) ? $this->priority : 'high',
'data' => $this->data,
'notification' => $this->notification
];
Expand Down

0 comments on commit 120e335

Please sign in to comment.