24 lines
315 B
Plaintext
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
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
|
||
|
}
|