mirror of
https://github.com/opensupports/opensupports.git
synced 2025-09-26 19:38:54 +02:00
15 lines
287 B
PHP
Executable File
15 lines
287 B
PHP
Executable File
<?php
|
|
class RecoverPassword extends DataStore {
|
|
const TABLE = 'recoverpassword';
|
|
|
|
public static function getProps() {
|
|
return array (
|
|
'email',
|
|
'token'
|
|
);
|
|
}
|
|
|
|
public function getDefaultProps() {
|
|
return array();
|
|
}
|
|
} |