Automattic\WooCommerce\Internal\Admin

Homescreen::get_instance()public staticWC 1.0

Get class instance.

Method of the class: Homescreen{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = Homescreen::get_instance();

Homescreen::get_instance() code WC 8.6.1

public static function get_instance() {
	if ( ! self::$instance ) {
		self::$instance = new self();
	}
	return self::$instance;
}