From f40f5b3a9d79e0317d4dc9f9f38ada21de43df2d Mon Sep 17 00:00:00 2001 From: Kekeocha Justin Chetachukwu <39213342+justinkekeocha@users.noreply.github.com> Date: Mon, 18 Sep 2023 18:50:12 +0100 Subject: [PATCH] docs: update for clarity Signed-off-by: Kekeocha Justin Chetachukwu <39213342+justinkekeocha@users.noreply.github.com> --- docs/payment-custom-wallet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/payment-custom-wallet.md b/docs/payment-custom-wallet.md index 670bdcbb7..d37886915 100644 --- a/docs/payment-custom-wallet.md +++ b/docs/payment-custom-wallet.md @@ -81,7 +81,7 @@ class Item extends Model implements ProductLimitedInterface ``` I do not recommend using the limited interface when working with a shopping cart. -If you are working with a shopping cart, then you should override the `PurchaseServiceInterface` interface. +If you are working with a shopping cart, then you should override the `ProductLimitedInterface` with the `PurchaseServiceInterface` interface. With it, you can check the availability of all products with one request, there will be no N-queries in the database. ## Proceed to purchase