/home/sharedstore/public_html/prestashop.sharedstore.ma/vendor/intervention/httpauth/src
NameSizeModeActions
config/-0755rm
Exception/-0755rm
Laravel/-0755rm
Token/-0755rm
Vault/-0755rm
AbstractVault.php48040644editdlrm
Directive.php16990644editdlrm
Environment.php12070644editdlrm
HttpAuth.php40880644editdlrm
Key.php25530644editdlrm
TokenInterface.php1940644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/vendor/intervention/httpauth/src/Key.php (2553B)
realm; } /** * Return current username * * @return string */ public function getUsername() { return $this->username; } /** * Return current password * * @return string */ public function getPassword() { return $this->password; } /** * Return current qop * * @return string */ public function getQop() { return $this->qop; } /** * Return current nonce * * @return string */ public function getNonce() { return $this->nonce; } /** * Return current opaque * * @return string */ public function getOpaque() { return $this->opaque; } /** * Return current uri * * @return string */ public function getUri() { return $this->uri; } /** * Return current nc * * @return string */ public function getNc() { return $this->nc; } /** * Return current cnonce * * @return string */ public function getCnonce() { return $this->cnonce; } /** * Return current response * * @return string */ public function getResponse() { return $this->response; } /** * Set property to given value on current instance * * @param string $name * @param mixed $value * @return Key */ public function setProperty($name, $value): Key { if (property_exists($this, $name)) { $this->{$name} = $value; } return $this; } }