Replace session repository

This commit is contained in:
Lance Pioch 2022-10-24 00:44:59 -04:00
parent e49ba65709
commit e411707f4b
3 changed files with 0 additions and 55 deletions

View file

@ -1,18 +0,0 @@
<?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;
}