Files
Archive/retro/atomcms/app/Events/UserClient.php

22 lines
413 B
PHP
Raw Normal View History

2025-12-09 06:52:43 +00:00
<?php
namespace App\Events;
use Atom\Core\Models\User;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class UserClient
{
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
* Create a new event instance.
*/
public function __construct(public readonly User $user)
{
//
}
}