1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-11-01 14:20:07 +00:00
Tims-Chat/file/lib/data/room/RoomList.class.php
max-m 0241bb50c9 Fixed installation process for now
timeInterval to integer is just a temporary change
2013-01-25 22:37:22 +01:00

19 lines
489 B
PHP

<?php
namespace chat\data\room;
/**
* Represents a list of chat rooms.
*
* @author Tim Düsterhus
* @copyright 2010-2013 Tim Düsterhus
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package be.bastelstu.chat
* @subpackage data.room
*/
class RoomList extends \wcf\data\DatabaseObjectList {
/**
* @see \wcf\data\DatabaseObjectList::$className
*/
public $className = 'chat\data\room\Room';
}