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