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 e7758a8 + 120e335 commit fc552b6Copy full SHA for fc552b6
src/Fcm.php
@@ -77,7 +77,7 @@ public function send()
77
{
78
$payloads = [
79
'content_available' => true,
80
- 'priority' => $this->priority ?? 'high',
+ 'priority' => isset($this->priority) ? $this->priority : 'high',
81
'data' => $this->data,
82
'notification' => $this->notification
83
];
0 commit comments