public function UriInterface::withUserInfo in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/psr/http-message/src/UriInterface.php \Psr\Http\Message\UriInterface::withUserInfo()
Return an instance with the specified user information.
This method MUST retain the state of the current instance, and return an instance that contains the specified user information.
Password is optional, but the user information MUST include the user; an empty string for the user is equivalent to removing user information.
Parameters
string $user The user name to use for authority.:
null|string $password The password associated with $user.:
Return value
self A new instance with the specified user information.
2 methods override UriInterface::withUserInfo()
- Uri::withUserInfo in vendor/
zendframework/ zend-diactoros/ src/ Uri.php - Return an instance with the specified user information.
- Uri::withUserInfo in vendor/
guzzlehttp/ psr7/ src/ Uri.php - Return an instance with the specified user information.
File
- vendor/
psr/ http-message/ src/ UriInterface.php, line 207
Class
- UriInterface
- Value object representing a URI.
Namespace
Psr\Http\MessageCode
public function withUserInfo($user, $password = null);