misc_pterodactyl-panel/app/Contracts/Repository/SessionRepositoryInterface.php

21 lines
443 B
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Contracts\Repository;
use Illuminate\Support\Collection;
interface SessionRepositoryInterface extends RepositoryInterface
{
/**
* Return all of the active sessions for a user.
*/
public function getUserSessions(int $user): Collection;
/**
* Delete a session for a given user.
*
2020-06-28 22:43:44 +00:00
* @return int|null
*/
public function deleteUserSession(int $user, string $session);
}