Skip to content

Commit 120e335

Browse files
authored
Update Fcm.php
keep php5.6 support
1 parent e7758a8 commit 120e335

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Fcm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function send()
7777
{
7878
$payloads = [
7979
'content_available' => true,
80-
'priority' => $this->priority ?? 'high',
80+
'priority' => isset($this->priority) ? $this->priority : 'high',
8181
'data' => $this->data,
8282
'notification' => $this->notification
8383
];

0 commit comments

Comments
 (0)