public function Request::getPassword in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Request.php \Symfony\Component\HttpFoundation\Request::getPassword()
Returns the password.
Return value
string|null
1 call to Request::getPassword()
- Request::getUserInfo in vendor/
symfony/ http-foundation/ Request.php - Gets the user info.
File
- vendor/
symfony/ http-foundation/ Request.php, line 999
Class
- Request
- Request represents an HTTP request.
Namespace
Symfony\Component\HttpFoundationCode
public function getPassword() {
return $this->headers
->get('PHP_AUTH_PW');
}