You are here

public function CdnSettings::getScheme in CDN 8.3

Returns the scheme to use.

Return value

string Possible values are `//`, `https://`, `http://`.

File

src/CdnSettings.php, line 63

Class

CdnSettings
Wraps the CDN settings configuration, contains all parsing.

Namespace

Drupal\cdn

Code

public function getScheme() : string {
  return $this->rawSettings
    ->get('scheme');
}