Your IP : 216.73.216.130


Current Path : /var/www/html/wp-content/plugins/wpide/App/Services/Auth/
Upload File :
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;
}