mirror of
https://github.com/opensupports/opensupports.git
synced 2025-04-08 18:35:06 +02:00
19 lines
323 B
PHP
Executable File
19 lines
323 B
PHP
Executable File
<?php
|
|
|
|
class APIKey extends DataStore {
|
|
const TABLE = 'apikey';
|
|
|
|
public static function getProps() {
|
|
return [
|
|
'name',
|
|
'token'
|
|
];
|
|
}
|
|
|
|
public function toArray() {
|
|
return [
|
|
'name' => $this->name,
|
|
'token' => $this->token
|
|
];
|
|
}
|
|
} |