summaryrefslogtreecommitdiffstats
path: root/admin/survey/minify/vendor/intervention/httpauth/src/Intervention/Httpauth/UserInterface.php
blob: e2bfd8fc951b77da99c9e7a2e211e245823d47e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

namespace Intervention\Httpauth;

interface UserInterface
{
    /**
     * Checks for valid username & password
     *
     * @param  array  $credentials
     * @return boolean
     */
    public function isValid($name, $password, $realm);

    /**
     * Parses the User Information from server variables

     * @return void
     */
    public function parse();

}