10 lines
171 B
PHP
10 lines
171 B
PHP
<?php
|
|
namespace App\Modules\Bot\Http\Interfaces;
|
|
|
|
interface MessengerBotInterface {
|
|
|
|
public static function sendMessage(string $userBotId, string $message): void;
|
|
|
|
}
|
|
|