You are here

function Verifier::__construct in Automatic Updates 8

Same name and namespace in other branches
  1. 7 vendor/drupal/php-signify/src/Verifier.php \Drupal\Signify\Verifier::__construct()

Verifier constructor.

Parameters

string $public_key: A public key generated by the BSD signify application.

File

vendor/drupal/php-signify/src/Verifier.php, line 32

Class

Verifier

Namespace

Drupal\Signify

Code

function __construct($public_key_raw) {
  $this->publicKeyRaw = $public_key_raw;
}