D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ltfsolutionsco
/
www
/
wp-content
/
plugins
/
wp-optimize
/
vendor
/
intervention
/
httpauth
/
src
/
Filename :
Key.php
back
Copy
<?php namespace Intervention\HttpAuth; class Key { /** * Realm * * @var string */ private $realm; /** * Username * * @var string */ private $username; /** * Password * * @var string */ private $password; /** * QOP * * @var string */ private $qop; /** * Nonce * * @var string */ private $nonce; /** * Opaque * * @var string */ private $opaque; /** * NC * * @var string */ private $nc; /** * uri * * @var string */ private $uri; /** * cnonce * * @var string */ private $cnonce; /** * Response * * @var string */ private $response; public function getRealm() { return $this->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; } }
Name
Size
Last Modified
Owner
Permissions
Actions
Exception
Dir
February 03 2024 3:18:26
ltfsolutionsco
0755
Laravel
Dir
February 03 2024 3:18:26
ltfsolutionsco
0755
Token
Dir
February 03 2024 3:18:26
ltfsolutionsco
0755
Vault
Dir
February 03 2024 3:18:26
ltfsolutionsco
0755
config
Dir
February 03 2024 3:18:26
ltfsolutionsco
0755
AbstractVault.php
4.701
KB
February 03 2024 3:18:26
ltfsolutionsco
0644
Directive.php
1.659
KB
February 03 2024 3:18:26
ltfsolutionsco
0644
Environment.php
1.186
KB
February 03 2024 3:18:26
ltfsolutionsco
0644
HttpAuth.php
3.998
KB
February 03 2024 3:18:26
ltfsolutionsco
0644
Key.php
2.493
KB
February 03 2024 3:18:26
ltfsolutionsco
0644
TokenInterface.php
0.189
KB
February 03 2024 3:18:26
ltfsolutionsco
0644
2017 © D7net | D704T team