chatbox/chatbox

There is no license information available for the latest version (dev-master) of this package.

dev-master 2015-04-11 08:21 UTC

This package is not auto-updated.

Last update: 2024-05-11 13:41:48 UTC


README

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();