alfred-nextcloud/bot/Commands/Icommands.php

15 lines
254 B
PHP
Raw Normal View History

2024-08-05 23:33:27 +02:00
<?php
namespace Shikiryu\Bot\Commands;
use Shikiryu\Bot\Bot;
interface Icommands
{
public static function getMessage(Bot $bot, array $data);
2024-08-07 17:05:07 +02:00
public static function getDescription(): string;
public static function getPattern(): string;
2024-08-05 23:33:27 +02:00
}