mirror of
https://github.com/opensupports/opensupports.git
synced 2025-11-29 01:43:31 +01:00
19 lines
331 B
PHP
19 lines
331 B
PHP
<?php
|
|
|
|
class Comment extends DataStore {
|
|
const TABLE = 'comment';
|
|
|
|
public static function getProps() {
|
|
return array(
|
|
'content',
|
|
'file',
|
|
'ticket',
|
|
'author',
|
|
'date'
|
|
);
|
|
}
|
|
|
|
protected function getDefaultProps() {
|
|
return array();
|
|
}
|
|
} |