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