WC_Shipping_Rate::__set()publicWC 3.2.0

Magic methods to support direct access to props.

Method of the class: WC_Shipping_Rate{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Shipping_Rate = new WC_Shipping_Rate();
$WC_Shipping_Rate->__set( $key, $value );
$key(string) (required)
Key.
$value(mixed) (required)
Value.

Changelog

Since 3.2.0 Introduced.

WC_Shipping_Rate::__set() code WC 8.7.0

public function __set( $key, $value ) {
	if ( is_callable( array( $this, "set_{$key}" ) ) ) {
		$this->{"set_{$key}"}( $value );
	} else {
		$this->data[ $key ] = $value;
	}
}