Automattic\WooCommerce\Internal

RestockRefundedItemsAdjuster::initpublicWC 1.0

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

Method of the class: RestockRefundedItemsAdjuster{}

No Hooks.

Returns

null. Nothing (null).

Usage

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

RestockRefundedItemsAdjuster::init() code WC 10.4.3

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 );
}