New-OMIS/stubs/nwidart-stubs/channel.stub
2024-04-04 16:20:27 +05:45

24 lines
315 B
Plaintext

<?php
namespace $NAMESPACE$;
class $CLASS$
{
/**
* Create a new channel instance.
*/
public function __construct()
{
//
}
/**
* Authenticate the user's access to the channel.
*/
public function join(Operator $user): array|bool
{
//
}
}