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