18 lines
No EOL
248 B
PHP
Executable file
18 lines
No EOL
248 B
PHP
Executable file
<?php
|
|
|
|
|
|
namespace Venom\Security;
|
|
|
|
|
|
use Venom\Entities\User;
|
|
|
|
interface Login
|
|
{
|
|
public function __construct(User $user);
|
|
|
|
public function checkCredentials(): bool;
|
|
|
|
public function login(): bool;
|
|
|
|
public function redirect(): void;
|
|
} |