mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
19 lines
415 B
PHP
19 lines
415 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Contracts\Repository;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
interface SessionRepositoryInterface extends RepositoryInterface
|
|
{
|
|
/**
|
|
* Return all the active sessions for a user.
|
|
*/
|
|
public function getUserSessions(int $user): Collection;
|
|
|
|
/**
|
|
* Delete a session for a given user.
|
|
*/
|
|
public function deleteUserSession(int $user, string $session): ?int;
|
|
}
|