Automattic\WooCommerce\Blocks\Domain\Services\CheckoutFieldsSchema

DocumentObject::set_cartpublicWC 1.0

Set the cart object.

Method of the class: DocumentObject{}

No Hooks.

Returns

null. Nothing (null).

Usage

$DocumentObject = new DocumentObject();
$DocumentObject->set_cart( $cart );
$cart(WC_Cart) (required)
The cart object.

DocumentObject::set_cart() code WC 9.9.4

public function set_cart( WC_Cart $cart ) {
	$this->cart = $cart;
}