Files
many-notes/app/Events/CollaborationAcceptedEvent.php
T

38 lines
763 B
PHP

<?php
declare(strict_types=1);
namespace App\Events;
use App\Models\User;
use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcastNow;
final class CollaborationAcceptedEvent implements ShouldBroadcastNow
{
use InteractsWithSockets;
/**
* Create a new event instance.
*/
public function __construct(
private User $user,
) {
//
}
/**
* Get the channels the event should broadcast on.
*
* @return array<int, Channel>
*/
public function broadcastOn(): array
{
return [
new PrivateChannel('User.' . $this->user->id),
];
}
}