You are here

public function CertManager::__construct in Lockr 4.x

Constructs a CertManager.

Parameters

ConfigFactoryInterface $config_factory: The simple config factory.

FileSystemInterface $file_system: The Drupal file system.

string $drupal_root: The Drupal site root.

File

src/CertManager.php, line 46

Class

CertManager
Helper class for managing Lockr certificates.

Namespace

Drupal\lockr

Code

public function __construct(ConfigFactoryInterface $config_factory, FileSystemInterface $file_system, $drupal_root) {
  $this->configFactory = $config_factory;
  $this->fileSystem = $file_system;
  $this->drupalRoot = $drupal_root;
}