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()
File
- src/
HttpClient.php, line 284
Class
- HttpClient
- The http client.
Namespace
Drupal\http_client_managerCode
protected function getFileLoader() {
if (empty($this->fileLoader)) {
$this
->initFileLoader();
}
return $this->fileLoader;
}