Add parameter retrieval methods to bot library

This commit is contained in:
netkas 2024-10-07 11:53:39 -04:00
parent e4ff11c005
commit 96797a17bc
5 changed files with 78 additions and 0 deletions

View file

@ -15,4 +15,20 @@
{
return (bool) self::executeCurl(self::buildPost($bot, Methods::CLOSE->value));
}
/**
* @inheritDoc
*/
public static function getRequiredParameters(): ?array
{
return null;
}
/**
* @inheritDoc
*/
public static function getOptionalParameters(): ?array
{
return null;
}
}