StocksNew/stubs/nwidart-stubs/channel.stub

24 lines
315 B
Plaintext
Raw Normal View History

2024-08-27 12:03:06 +00:00
<?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
{
//
}
}