WC_Cart::persistent_cart_update PHP Method

persistent_cart_update() public method

Save the persistent cart when the cart is updated.
    public function persistent_cart_update()
    {
        update_user_meta(get_current_user_id(), '_woocommerce_persistent_cart', array('cart' => WC()->session->get('cart')));
    }
WC_Cart