mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-27 10:40:38 +00:00
Merge remote-tracking branch 'origin/sockets'
# Conflicts: # composer.lock # public/mix-manifest.json
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
namespace Domain\Notifications\Events;
|
||||
|
||||
use Illuminate\Broadcasting\PrivateChannel;
|
||||
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
||||
use Illuminate\Foundation\Events\Dispatchable;
|
||||
|
||||
class TestUpdate implements ShouldBroadcast
|
||||
{
|
||||
public string $test = 'I am tru man';
|
||||
|
||||
use Dispatchable;
|
||||
|
||||
public function broadcastOn(): PrivateChannel
|
||||
{
|
||||
return new PrivateChannel('test.6474ef97-472b-43f3-b607-f71df9d33e43');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user