diff --git a/demo.php b/demo.php index dbe7599..fefb054 100644 --- a/demo.php +++ b/demo.php @@ -164,6 +164,7 @@ dump($subscriptions->get($args['billing-agreement'])); }); +// it does not show reversed transactions!! $router->add('subscriptions list transactions ', static function (array $args) use ($sandbox, $handler, $auth) : void { $subscriptions = new Subscriptions($sandbox, $handler, $auth); dump($subscriptions->listTransactions($args['billing-agreement'])); @@ -352,6 +353,7 @@ dump($payments->getAuthorized($args['id'])); }); +// it does not show reversed transactions!! $router->add('payments get captured ', static function (array $args) use ($sandbox, $handler, $auth) : void { $payments = new Payments($sandbox, $handler, $auth); dump($payments->getCaptured($args['id']));