mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2025-01-09 00:20:08 +00:00
Fixed indentation, added class comment
This commit is contained in:
parent
4e49cd5618
commit
c448be28cc
@ -1,11 +1,19 @@
|
||||
<?php
|
||||
namespace chat\data;
|
||||
|
||||
/**
|
||||
* Basic implementation that sets proper table name
|
||||
* @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
|
||||
*/
|
||||
abstract class CHATDatabaseObject extends \wcf\data\DatabaseObject {
|
||||
/**
|
||||
* @see \wcf\data\DatabaseObject::getDatabaseTableName()
|
||||
*/
|
||||
* @see \wcf\data\DatabaseObject::getDatabaseTableName()
|
||||
*/
|
||||
public static function getDatabaseTableName() {
|
||||
return 'chat'.WCF_N.'_'.static::$databaseTableName;
|
||||
return 'chat'.WCF_N.'_'.static::$databaseTableName;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user