Automattic\WooCommerce\Internal\Admin
Coupons::get_instance()
Get class instance.
Метод класса: Coupons{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$result = Coupons::get_instance();
Код Coupons::get_instance() Coupons::get instance WC 9.5.1
public static function get_instance() { if ( ! self::$instance ) { self::$instance = new self(); } return self::$instance; }