venom/src/Venom/Security/Login.php
versustunez eb6770204a VENOM-10: Moved to new Module Structure
Fixed File-Endings
Added Entity-System
2021-01-03 16:59:11 +01:00

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;
}