Automattic\WooCommerce\Internal\Admin\WCPayPromotion

WCPayPromotionDataSourcePoller::get_instance()public staticWC 1.0

Get class instance.

Метод класса: WCPayPromotionDataSourcePoller{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = WCPayPromotionDataSourcePoller::get_instance();

Код WCPayPromotionDataSourcePoller::get_instance() WC 8.7.0

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