vnphp/push-notification-bundle

Symfony2 推送通知支持。

v0.3 2017-08-20 12:15 UTC

This package is auto-updated.

Last update: 2024-08-27 15:38:52 UTC


README

build status

安装

composer require vnphp/push-notification-bundle

使用

<?php

use Vnphp\PushNotificationBundle\Model\Message;

$message = new Message();
$message->setTitle('title')
    ->setBody('body')
    ->setIcon('icon')
    ->setClickAction('click action');

$this->get('vnphp_push_notification.notifier')->notifyUsers($message, 'token');