From 59dcc39317d2f8bfc0dcc2a8e07f8361083534c1 Mon Sep 17 00:00:00 2001 From: Andrzej Budzanowski Date: Sat, 27 Jun 2020 17:10:22 +0200 Subject: [PATCH] Make Plaid class not final --- src/Plaid.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Plaid.php b/src/Plaid.php index c4788ce..4f966ae 100644 --- a/src/Plaid.php +++ b/src/Plaid.php @@ -10,7 +10,7 @@ use Shuttle\Shuttle; use TomorrowIdeas\Plaid\Entities\Address; -final class Plaid +class Plaid { /** * Plaid API host environment. @@ -939,4 +939,4 @@ public function listPayments(array $options = []): object $this->buildRequest("post", "payment_initiation/payment/list", $this->clientCredentials($params)) ); } -} \ No newline at end of file +}