Yoast\WP\SEO\AI_Authorization\Domain

Code_Verifier::__constructpublicYoast 1.0

Code_Verifier constructor.

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

Хуков нет.

Возвращает

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

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

$Code_Verifier = new Code_Verifier();
$Code_Verifier->__construct( $code, $created_at );
$code(строка) (обязательный)
The code.
$created_at(int) (обязательный)
The time the code was created.

Код Code_Verifier::__construct() Yoast 27.7

public function __construct( string $code, int $created_at ) {
	$this->code       = $code;
	$this->created_at = $created_at;
}