feat: remove BankAccount domain and related functionality, including controller, model, requests, routes, and tests

This commit is contained in:
2026-07-06 16:53:45 -03:00
parent 1fcb3129ea
commit 2c2cf45f78
13 changed files with 75 additions and 535 deletions

View File

@@ -167,6 +167,18 @@ class TelepagosIntegrationService extends BaseIntegrationService
]);
}
/**
* Get the account info.
*
* @return array
* @throws Exception
*/
public function getAccountInfo(): array
{
$response = $this->sendRequest('get', '/v2/account/info');
return $this->handleResponse($response, 'get account info');
}
/**
* Handle the Telepagos API response, logging any failures and throwing Exceptions.
*