Removed bot name, we're going old-school.

This commit is contained in:
Netkas 2023-02-14 17:35:57 -05:00
parent 54a8a59ee8
commit 45edd758a1

View file

@ -4,13 +4,6 @@
class Bot class Bot
{ {
/**
* The bot's username
*
* @var string
*/
private $username;
/** /**
* The bot's token * The bot's token
* *
@ -21,23 +14,13 @@
/** /**
* Public Constructor * Public Constructor
* *
* @param string $username
* @param string $token * @param string $token
*/ */
public function __construct(string $username, string $token) public function __construct(string $token)
{ {
$this->username = $username;
$this->token = $token; $this->token = $token;
} }
/**
* @return string
*/
public function getUsername(): string
{
return $this->username;
}
/** /**
* @return string * @return string
*/ */