From f37720787ffd8843f602e64978707a63b13aa677 Mon Sep 17 00:00:00 2001 From: 8ctopus Date: Mon, 18 Nov 2024 11:27:07 +0400 Subject: [PATCH] Cleanup readme Cleanup comments --- README.md | 2 +- src/Hooks.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f4d9097..d1f8459 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A php implementation of the PayPal REST API using `PSR-7`, `PSR-17` and `PSR-18`. -The package is a work in progress and contributions are welcome. For now, it covers `Orders` (one-time payments), subscriptions (`Products`, `Plans` and `Subscriptions`), and `web hooks` (receive notifications from PayPal when certain events occur). That's all that's needed to create a store, be it one-time payment or subscription based. +The package is a work in progress and contributions are welcome. For now, it covers `Orders` (one-time payments), subscriptions (`Products`, `Plans` and `Subscriptions`), and `Webhooks` (receive notifications from PayPal when certain events occur). That's all that's needed to create a store, be it one-time payment or subscription based. ## install package diff --git a/src/Hooks.php b/src/Hooks.php index 354eccc..9011ede 100644 --- a/src/Hooks.php +++ b/src/Hooks.php @@ -169,7 +169,7 @@ public function listEvents(?string $eventType, ?string $search, ?DateTime $start } // supported: event id, transaction id, but maybe other fields are supported - // not supported: billing agreement + // not supported: billing agreement, email if ($search) { $params['transaction_id'] = $search; }