Skip to content

Commit

Permalink
Cleanup readme
Browse files Browse the repository at this point in the history
Cleanup comments
  • Loading branch information
8ctopus committed Nov 18, 2024
1 parent dadaeed commit f377207
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/Hooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit f377207

Please sign in to comment.