INFO Channel [app/Broadcasting/Foo.php] created successfully.
<?php
namespace App\Broadcasting;
use App\Models\User;
class Foo
{
/**
* Create a new channel instance.
*/
public function __construct()
{
//
}
/**
* Authenticate the user's access to the channel.
*/
public function join(User $user): array|bool
{
//
}
}
コメント