Automattic\WooCommerce\Internal\DataStores\Orders

OrdersTableRefundDataStore::create()publicWC 1.0

Method to create a refund in the database.

Method of the class: OrdersTableRefundDataStore{}

No Hooks.

Return

null. Nothing (null).

Usage

$OrdersTableRefundDataStore = new OrdersTableRefundDataStore();
$OrdersTableRefundDataStore->create( $refund );
$refund(\WC_Abstract_Order) (required) (passed by reference — &)
Refund object.

OrdersTableRefundDataStore::create() code WC 8.7.0

public function create( &$refund ) {
	$refund->set_status( 'completed' ); // Refund are always marked completed.
	$this->persist_save( $refund );
}