feat: 项目基础框架+配置+Kernel

This commit is contained in:
testadmin
2026-04-29 05:35:00 +08:00
parent 6ce7adcbfb
commit 9a6151fce3
5082 changed files with 437062 additions and 0 deletions
+59
View File
@@ -0,0 +1,59 @@
<?php
namespace App\Events;
use Illuminate\Broadcasting\Channel;
use Illuminate\Queue\SerializesModels;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
class RechargeEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
protected $userId; //用户id
protected $scene; //充值场景
protected $number; //充值数量
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($user_id, $scene, $number)
{
$this->userId = $user_id;
$this->scene = $scene;
$this->number = $number;
}
/**
* 取事件参数
*
* @return array
*/
public function getEventParam() : array
{
$param = [
'user_id' => $this->userId,
'scene' => $this->scene,
'number' => $this->number,
];
return $param;
}
/**
* Get the channels the event should broadcast on.
*
* @return \Illuminate\Broadcasting\Channel|array
*/
public function broadcastOn()
{
return new PrivateChannel('channel-name');
}
}