18 lines
316 B
PHP
18 lines
316 B
PHP
|
<?php
|
||
|
|
||
|
class APIKey extends DataStore {
|
||
|
const TABLE = 'apikey';
|
||
|
|
||
|
public static function getProps() {
|
||
|
return [
|
||
|
'name',
|
||
|
'key'
|
||
|
];
|
||
|
}
|
||
|
public function toArray() {
|
||
|
return [
|
||
|
'name' => $this->name,
|
||
|
'key' => $this->key
|
||
|
];
|
||
|
}
|
||
|
}
|