multi-store/app/common/service/PushService.php
2024-05-30 21:37:55 +08:00

29 lines
599 B
PHP

<?php
namespace app\common\service;
use Webman\Push\Api;
class PushService
{
/**
* 推送消息
* @param $subscription 订阅
* @param $uid 用户id
* @param $content 消息内容
*/
public static function push($subscription, $uid, $content)
{
$api = new Api(
getenv('PUSH_URL'),
config('plugin.webman.push.app.app_key'),
config('plugin.webman.push.app.app_secret')
);
$api->trigger($subscription, 'message', [
'from_uid' => $uid,
'content' => $content
]);
}
}