WC_Order_Item::apply_changes()
Merge changes with data and clear.
Description Description
Overrides WC_Data::apply_changes. array_replace_recursive does not work well for order items because it merges taxes instead of replacing them.
Source Source
File: includes/class-wc-order-item.php
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(); }
Changelog Changelog
Version | Description |
---|---|
3.2.0 | Introduced. |