Automattic\WooCommerce\Internal

RestockRefundedItemsAdjuster::init()publicWC 1.0

Class initialization, to be executed when the class is resolved by the container.

Method of the class: RestockRefundedItemsAdjuster{}

No Hooks.

Return

null. Nothing (null).

Usage

$RestockRefundedItemsAdjuster = new RestockRefundedItemsAdjuster();
$RestockRefundedItemsAdjuster->init();

RestockRefundedItemsAdjuster::init() code WC 8.7.0

final public function init() {
	$this->order_factory = wc_get_container()->get( LegacyProxy::class )->get_instance_of( \WC_Order_Factory::class );
	add_action( 'woocommerce_before_save_order_items', array( $this, 'initialize_restock_refunded_items' ), 10, 2 );
}