mirror of
https://github.com/opensupports/opensupports.git
synced 2025-08-21 17:58:35 +02:00
16 lines
281 B
PHP
Executable File
16 lines
281 B
PHP
Executable File
<?php
|
|
|
|
class SessionCookie extends DataStore {
|
|
const TABLE = 'sessioncookie';
|
|
|
|
public static function getProps() {
|
|
return array (
|
|
'user',
|
|
'token',
|
|
'ip',
|
|
'creationDate',
|
|
'expirationDate'
|
|
);
|
|
}
|
|
}
|