Clickalicious\PhpMemAdmin\App::setCredentials PHP Method

setCredentials() protected method

Setter for credentials.
Author: Benjamin Carl ([email protected])
protected setCredentials ( string $username, string $password ) : void
$username string The username used to authenticate
$password string The password used to authenticate
return void
    protected function setCredentials($username, $password)
    {
        $this->credentials['username'] = $username;
        $this->credentials['password'] = $password;
    }