1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2025-01-18 01:20:40 +00:00
Tims-Chat/file/lib/data/room/RoomList.class.php

19 lines
489 B
PHP
Raw Normal View History

2011-11-26 16:47:28 +01:00
<?php
namespace chat\data\room;
2011-11-26 16:47:28 +01:00
/**
* Represents a list of chat rooms.
*
* @author Tim Düsterhus
2014-02-27 23:05:09 +01:00
* @copyright 2010-2014 Tim Düsterhus
2011-11-26 16:47:28 +01:00
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
2013-01-19 20:36:40 +01:00
* @package be.bastelstu.chat
* @subpackage data.room
2011-11-26 16:47:28 +01:00
*/
2013-01-19 20:36:40 +01:00
class RoomList extends \wcf\data\DatabaseObjectList {
2011-11-26 16:47:28 +01:00
/**
* @see \wcf\data\DatabaseObjectList::$className
2011-11-26 16:47:28 +01:00
*/
2013-01-19 20:36:40 +01:00
public $className = 'chat\data\room\Room';
2011-11-26 16:47:28 +01:00
}