Guillermo Giuliana e15bd15f07
Updates to 4.10.0 (#1061)
* change 4.9 to 4.10

* new translations
2021-10-18 22:06:20 -03:00

24 lines
445 B
PHP
Executable File

<?php
/**
* @api {OBJECT} Ban Ban
* @apiVersion 4.10.0
* @apiGroup Data Structures
* @apiParam {Email} email The email address that is banned.
*/
class Ban extends DataStore {
const TABLE = 'ban';
public static function getProps() {
return array (
'email'
);
}
public function getDefaultProps() {
return array();
}
public function toArray() {
return $this->email;
}
}