Automattic\WooCommerce\Admin\Marketing

Price::__construct()publicWC 1.0

Price constructor.

Метод класса: Price{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Price = new Price();
$Price->__construct( $value, $currency );
$value(строка) (обязательный)
The value of the price.
$currency(строка) (обязательный)
The currency of the price.

Код Price::__construct() WC 8.7.0

public function __construct( string $value, string $currency ) {
	$this->value    = $value;
	$this->currency = $currency;
}