WP_Recovery_Mode_Link_Service::__construct( WP_Recovery_Mode_Cookie_Service $cookie_service, WP_Recovery_Mode_Key_Service $key_service )

In this article

WP_Recovery_Mode_Link_Service constructor.

Parameters

$cookie_serviceWP_Recovery_Mode_Cookie_Servicerequired
Service to handle setting the recovery mode cookie.
$key_serviceWP_Recovery_Mode_Key_Servicerequired
Service to handle generating recovery mode keys.

Source

public function __construct( WP_Recovery_Mode_Cookie_Service $cookie_service, WP_Recovery_Mode_Key_Service $key_service ) {
	$this->cookie_service = $cookie_service;
	$this->key_service    = $key_service;
}

Changelog

VersionDescription
5.2.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.