summaryrefslogtreecommitdiff
path: root/core/classes/authenticator/UserInterface.php
blob: 5cc6d2d8909aa14638291e6d4e97a78f54c88ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/**
 * Interface UserInterface
 * @package DevCoder\Authentication
 */
interface UserInterface
{
    public function getUsername() :?string;

    public function getPassword() :?string;

    public function getRoles() : array;

    public function isEnabled(): bool;
}