WP_Recovery_Mode::__construct()publicWP 5.2.0

WP_Recovery_Mode constructor.

Method of the class: WP_Recovery_Mode{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Recovery_Mode = new WP_Recovery_Mode();
$WP_Recovery_Mode->__construct();

Changelog

Since 5.2.0 Introduced.

WP_Recovery_Mode::__construct() code WP 6.4.3

public function __construct() {
	$this->cookie_service = new WP_Recovery_Mode_Cookie_Service();
	$this->key_service    = new WP_Recovery_Mode_Key_Service();
	$this->link_service   = new WP_Recovery_Mode_Link_Service( $this->cookie_service, $this->key_service );
	$this->email_service  = new WP_Recovery_Mode_Email_Service( $this->link_service );
}