15 lines
237 B
PHP
15 lines
237 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace mirzaev\accounts\auth;
|
|
|
|
/**
|
|
* Базовая авторизация
|
|
*/
|
|
interface basic
|
|
{
|
|
public function auth(string $login, string $password): self;
|
|
public function deauth(): self;
|
|
}
|