public function UpdateFetcher::__construct in Drupal 8
Same name and namespace in other branches
- 9 core/modules/update/src/UpdateFetcher.php \Drupal\update\UpdateFetcher::__construct()
Constructs a UpdateFetcher.
Parameters
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.
\GuzzleHttp\ClientInterface $http_client: A Guzzle client object.
File
- core/
modules/ update/ src/ UpdateFetcher.php, line 51
Class
- UpdateFetcher
- Fetches project information from remote locations.
Namespace
Drupal\updateCode
public function __construct(ConfigFactoryInterface $config_factory, ClientInterface $http_client) {
$this->fetchUrl = $config_factory
->get('update.settings')
->get('fetch.url');
$this->httpClient = $http_client;
$this->updateSettings = $config_factory
->get('update.settings');
}