Home
last modified time | relevance | path

Searched refs:withScheme (Results 1 – 7 of 7) sorted by relevance

/plugin/elasticsearch/vendor/nyholm/dsn/src/Configuration/
H A DPath.php44 public function withScheme(?string $scheme) function in Nyholm\\Dsn\\Configuration\\Path
50 return parent::withScheme($scheme);
H A DDsn.php40 public function withScheme(?string $scheme) function in Nyholm\\Dsn\\Configuration\\Dsn
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DUriResolver.php156 return $target->withScheme('');
162 …$emptyPathUri = $target->withScheme('')->withPath('')->withUserInfo('')->withPort(null)->withHost(…
H A DUri.php472 public function withScheme($scheme) function in GuzzleHttp\\Psr7\\Uri
/plugin/authgooglesheets/vendor/psr/http-message/src/
H A DUriInterface.php191 public function withScheme($scheme); function
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DClient.php222 return $uri->getScheme() === '' && $uri->getHost() !== '' ? $uri->withScheme('http') : $uri;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md187 - `(new Uri())->withScheme('http')` will return `'http://localhost'`