chatbox/chatbox

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

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

pkg:composer/chatbox/chatbox

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

This package is not auto-updated.

Last update: 2025-10-11 20:56:54 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();