Framework

This commit is contained in:
2018-12-19 21:29:53 +00:00
parent 0976e17030
commit 27944ac132
5 changed files with 54 additions and 6 deletions

7
src/MessageHandler.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
interface MessageHandler
{
public function CanHandle($room_id, $msgid, $message): bool;
public function Handle($room_id, $msgid, $message): string;
}