You are here

public function CircleCiManager::__construct in Build Hooks 8.2

Same name and namespace in other branches
  1. 3.x modules/build_hooks_circleci/src/CircleCiManager.php \Drupal\build_hooks_circleci\CircleCiManager::__construct()

Constructs a new CircleCiManager object.

File

modules/build_hooks_circleci/src/CircleCiManager.php, line 43

Class

CircleCiManager
Class CircleCiManager.

Namespace

Drupal\build_hooks_circleci

Code

public function __construct(ConfigFactoryInterface $config_factory, ClientInterface $http_client, DateFormatterInterface $date_formatter) {
  $this->configFactory = $config_factory;
  $this->httpClient = $http_client;
  $this->dateFormatter = $date_formatter;
}