public function Url::getScheme

Get the scheme part of the URL

Return value

string

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Url.php, line 223

Class

Url
Parses and generates URLs based on URL parts. In favor of performance, URL parts are not validated.

Namespace

Guzzle\Http

Code

public function getScheme() {
  return $this->scheme;
}