Guillermo Giuliana 791e0969e9
add script and change 4.7.0 to 4.8.0 (#848)
* add script and change 4.7.0 to 4.8

* change end of line 4.8.0 script

* Delete main.py
2020-07-22 07:32:18 -03:00

24 lines
444 B
PHP
Executable File

<?php
/**
* @api {OBJECT} Ban Ban
* @apiVersion 4.8.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;
}
}