You appear to be a bot. Output may be restricted
Description
Merge changes with data and clear.
Overrides WC_Data::apply_changes. array_replace_recursive does not work well for order items because it merges taxes instead of replacing them.
Usage
WC_Order_Item::apply_changes();
Parameters
Returns
void
Source
File name: woocommerce/includes/class-wc-order-item.php
Lines:
1 to 11 of 11
public function apply_changes() { if ( function_exists( 'array_replace' ) ) { $this->data = array_replace( $this->data, $this->changes ); // phpcs:ignore PHPCompatibility.FunctionUse.NewFunctions.array_replaceFound } else { // PHP 5.2 compatibility. foreach ( $this->changes as $key => $change ) { $this->data[ $key ] = $change; } } $this->changes = array(); }