# wpide/3.1/App/Services/Auth/AuthInterface.php

WPIDE – File Manager &amp; Code Editor, version 3.1. 15 lines.

- Page: https://pluginprobe.com/plugins/wpide/3.1/code/App/Services/Auth/AuthInterface.php
- Raw: https://pluginprobe.com/plugins/wpide/3.1/raw/App/Services/Auth/AuthInterface.php
- Modified: 2022-07-30T20:33:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpide/3.1/code/App/Services/Auth/AuthInterface.php#L10-L20`.

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

```
