Update HasBitinflowPaymentsWallet.php

This commit is contained in:
2022-09-29 15:56:57 +02:00
committed by GitHub
parent c7eadf30ee
commit a205365bf5

View File

@@ -34,7 +34,7 @@ trait HasBitinflowPaymentsWallet
* @return mixed * @return mixed
* @throws GuzzleException * @throws GuzzleException
*/ */
private function asPaymentsUser(string $method, string $url, array $attributes = []): mixed protected function asPaymentsUser(string $method, string $url, array $attributes = []): mixed
{ {
$client = new Client([ $client = new Client([
'base_uri' => config('bitinflow-accounts.payments.base_url'), 'base_uri' => config('bitinflow-accounts.payments.base_url'),
@@ -58,7 +58,7 @@ trait HasBitinflowPaymentsWallet
* @return object|null * @return object|null
* @throws GuzzleException * @throws GuzzleException
*/ */
public function getPaymentsUser(): ?object protected function getPaymentsUser(): ?object
{ {
if (is_null($this->paymentsUser)) { if (is_null($this->paymentsUser)) {
$this->paymentsUser = $this->asPaymentsUser('GET', 'user'); $this->paymentsUser = $this->asPaymentsUser('GET', 'user');