Dumplie\Customer\Domain\Checkout::__construct PHP Method

__construct() public method

public __construct ( CartId $cartId, Address $billingAddress )
$cartId CartId
$billingAddress Address
    public function __construct(CartId $cartId, Address $billingAddress)
    {
        $this->cartId = $cartId;
        $this->billingAddress = $billingAddress;
        $this->shippingAddress = $billingAddress;
    }