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