mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-11-01 14:20:07 +00:00
19 lines
556 B
PHP
19 lines
556 B
PHP
|
<?php
|
||
|
namespace wcf\data\chat\message;
|
||
|
|
||
|
/**
|
||
|
* Executes message related actions.
|
||
|
*
|
||
|
* @author Tim Düsterhus
|
||
|
* @copyright 2010-2011 Tim Düsterhus
|
||
|
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
|
||
|
* @package timwolla.wcf.chat
|
||
|
* @subpackage data.chat.message
|
||
|
*/
|
||
|
class ChatMessageAction extends \wcf\data\AbstractDatabaseObjectAction {
|
||
|
/**
|
||
|
* @see wcf\data\AbstractDatabaseObjectAction::$className
|
||
|
*/
|
||
|
protected $className = '\wcf\data\chat\message\ChatMessageEditor';
|
||
|
}
|