Automattic\WooCommerce\Internal\Admin
Homescreen::get_instance
Get class instance.
Method of the class: Homescreen{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = Homescreen::get_instance();
Homescreen::get_instance() Homescreen::get instance code WC 10.7.0
public static function get_instance() {
if ( ! self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}