File "AuthInterface.php"

Full Path: /home/attunedd/public_html/wp-content/plugins/wpide/App/Services/Auth/AuthInterface.php
File size: 239 bytes
MIME-type: text/x-php
Charset: utf-8

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