opensupports/server/models/RecoverPassword.php

17 lines
301 B
PHP
Raw Normal View History

2016-07-20 06:38:34 +02:00
<?php
class RecoverPassword extends DataStore {
const TABLE = 'recoverpassword';
2016-07-20 06:38:34 +02:00
public static function getProps() {
return array (
'email',
'token',
'staff'
2016-07-20 06:38:34 +02:00
);
}
2016-07-20 06:38:34 +02:00
public function getDefaultProps() {
return array();
}
}