You are here

public function LockrSettings::__construct in Lockr 7.3

Parameters

string|null $cert_path:

string|null $host:

string|null $cert_password:

File

vendor/lockr/lockr/src/LockrSettings.php, line 20

Class

LockrSettings

Namespace

Lockr

Code

public function __construct($cert_path = null, $host = null, $cert_password = null) {
  $this->certPath = $cert_path;
  $this->host = $host;
  $this->certPassword = $cert_password;
}