You are here

protected function HttpClient::getFileLoader in HTTP Client Manager 8.2

Get File Loader.

Return value

\Guzzle\Service\Loader\FileLoader The file loader used to load the service descriptions.

1 call to HttpClient::getFileLoader()
HttpClient::loadServiceDescription in src/HttpClient.php

File

src/HttpClient.php, line 284

Class

HttpClient
The http client.

Namespace

Drupal\http_client_manager

Code

protected function getFileLoader() {
  if (empty($this->fileLoader)) {
    $this
      ->initFileLoader();
  }
  return $this->fileLoader;
}