Current Path : /var/www/html/wp-content/plugins/wpide/App/Services/Auth/ |
Current File : /var/www/html/wp-content/plugins/wpide/App/Services/Auth/AuthInterface.php |
<?php namespace WPIDE\App\Services\Auth; interface AuthInterface { public function user(): ?User; public function authenticate($username, $password): bool; public function forget(); public function getGuest(): User; }