Customer::set_customer_id( int $customer_id )

Summary

No summary available.

Parameters

$customer_id

(int) (Required) The customer ID to link to this user


Return

(void)


Source

File: src/BigCommerce/Accounts/Customer.php

	public function set_customer_id( $customer_id ) {
		update_user_option( $this->wp_user_id, self::CUSTOMER_ID_META, $customer_id );
	}


User Contributed Notes

You must log in before being able to contribute a note or feedback.