public function Request::getPassword

Same name in this branch

Returns the password.

Return value

string|null

1 call to Request::getPassword()
Request::getUserInfo in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Request.php
Gets the user info.

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Request.php, line 736

Class

Request
Request represents an HTTP request.

Namespace

Symfony\Component\HttpFoundation

Code

public function getPassword() {
  return $this->server
    ->get('PHP_AUTH_PW');
}