mirror of
https://github.com/opensupports/opensupports.git
synced 2025-04-08 18:35:06 +02:00
17 lines
301 B
PHP
Executable File
17 lines
301 B
PHP
Executable File
<?php
|
|
class RecoverPassword extends DataStore {
|
|
const TABLE = 'recoverpassword';
|
|
|
|
public static function getProps() {
|
|
return array (
|
|
'email',
|
|
'token',
|
|
'staff'
|
|
);
|
|
}
|
|
|
|
public function getDefaultProps() {
|
|
return array();
|
|
}
|
|
}
|