Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 359 Bytes

README.md

File metadata and controls

25 lines (15 loc) · 359 Bytes

chatbox - chatting framework

Outline

ROOM: 会話のまとまりで複数のmessageからなる MESSAGE: 一つのメッセージ。

Usage

use Chatbox\Chatbox;

$chatbox = new Chatbox;

$room = $chatbox->createRoom();
$room->join($user);
$room->message($user,$message);
$room->getList();
$room->out();

$room = $chatbox->findRoom();