2017-01-11 08:25:26 +01:00
|
|
|
<?php
|
2017-04-21 05:34:20 +02:00
|
|
|
/**
|
|
|
|
* @api {OBJECT} Stat Stat
|
|
|
|
* @apiGroup Data Structures
|
|
|
|
* @apiParam {Number} date The date of the stat.
|
|
|
|
* @apiParam {String} type The type of the stat.
|
|
|
|
* @apiParam {Boolean} general The general of the stat.
|
|
|
|
* @apiParam {String} value The value of the stat.
|
|
|
|
*/
|
|
|
|
|
2017-01-11 08:25:26 +01:00
|
|
|
class Stat extends DataStore {
|
|
|
|
const TABLE = 'stat';
|
|
|
|
|
|
|
|
public static function getProps() {
|
|
|
|
return array (
|
|
|
|
'date',
|
|
|
|
'type',
|
|
|
|
'general',
|
|
|
|
'value'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDefaultProps() {
|
|
|
|
return array();
|
|
|
|
}
|
2017-01-12 06:50:45 +01:00
|
|
|
public function toArray() {
|
|
|
|
return [
|
|
|
|
'date' => $this->date,
|
|
|
|
'type' => $this->type,
|
|
|
|
'general' => $this->general,
|
|
|
|
'value' => $this->value
|
|
|
|
];
|
|
|
|
}
|
2017-01-11 08:25:26 +01:00
|
|
|
}
|