You are here

protected function HttpClient::getFileLocator in HTTP Client Manager 8.2

Get File Locator.

Return value

\Symfony\Component\Config\FileLocator The file locator used to find the service descriptions.

2 calls to HttpClient::getFileLocator()
HttpClient::initFileLoader in src/HttpClient.php
Set File Loader.
HttpClient::loadServiceDescription in src/HttpClient.php

File

src/HttpClient.php, line 263

Class

HttpClient
The http client.

Namespace

Drupal\http_client_manager

Code

protected function getFileLocator() {
  if (empty($this->fileLocator)) {
    $this
      ->initFileLocator();
  }
  return $this->fileLocator;
}