Yoast\WP\SEO\MyYoast_Client\Infrastructure\Crypto

Key_Pair_Manager::__constructpublicYoast 1.0

Key_Pair_Manager constructor.

Метод класса: Key_Pair_Manager{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Key_Pair_Manager = new Key_Pair_Manager();
$Key_Pair_Manager->__construct( $encryption, $issuer_config );
$encryption(Encryption) (обязательный)
The encryption service.
$issuer_config(Issuer_Config) (обязательный)
The issuer configuration.

Код Key_Pair_Manager::__construct() Yoast 28.3

public function __construct( Encryption $encryption, Issuer_Config $issuer_config ) {
	$this->encryption    = $encryption;
	$this->issuer_config = $issuer_config;
	$this->logger        = new NullLogger();
}