php-firebase-cloud-messaging
php-firebase-cloud-messaging copied to clipboard
Body of notification not sent
In Notification::jsonSerialize there is an error, causing "body" not to be added to jsonData if there is no title set
public function jsonSerialize()
{
...
if ($this->title) {
$jsonData['body'] = $this->body;
}
Hi I'll think it's because you have the same test for title and body, a PR will be here if you want :)
https://github.com/sngrl/php-firebase-cloud-messaging/pull/13