StocksNew/stubs/nwidart-stubs/channel.stub
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +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
{
//
}
}