| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace App\Module\Dev\Events;
- use App\Module\Dev\Models\DevLog;
- use Illuminate\Broadcasting\InteractsWithSockets;
- use Illuminate\Foundation\Events\Dispatchable;
- use Illuminate\Queue\SerializesModels;
- /**
- * 开发日志创建事件
- */
- class DevLogCreatedEvent
- {
- use Dispatchable, InteractsWithSockets, SerializesModels;
- /**
- * 开发日志模型
- *
- * @var DevLog
- */
- public DevLog $log;
- /**
- * 创建一个新的事件实例
- *
- * @param DevLog $log
- * @return void
- */
- public function __construct(DevLog $log)
- {
- $this->log = $log;
- }
- }
|