From 5e92574ebb18da4944973ffedf59f0647de53947 Mon Sep 17 00:00:00 2001 From: Heath Naylor Date: Thu, 15 Jul 2021 11:46:06 -0600 Subject: [PATCH] Removed print calls in CustomerVaultService class --- source/Paysafe/CustomerVaultService.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/Paysafe/CustomerVaultService.php b/source/Paysafe/CustomerVaultService.php index 9090d44..537ca83 100644 --- a/source/Paysafe/CustomerVaultService.php +++ b/source/Paysafe/CustomerVaultService.php @@ -642,9 +642,7 @@ public function getACHBankAccount( CustomerVault\Profile $profile, CustomerVault 'uri' => $this->prepareURI("/profiles/" . $profile->id . "/achbankaccounts/" . $bankDetails->id), 'body' => $profile )); - print_r($request); $response = $this->client->processRequest($request); - print_r($response); return new CustomerVault\ACHBankaccounts($response); }