Update HasBitinflowPaymentsWallet.php

This commit is contained in:
2022-09-29 16:22:14 +02:00
committed by GitHub
parent 8e88d12d88
commit 5caef21b01

View File

@@ -34,7 +34,7 @@ trait HasBitinflowPaymentsWallet
* @return mixed * @return mixed
* @throws GuzzleException * @throws GuzzleException
*/ */
protected function asPaymentsUser(string $method, string $url, array $attributes = []): mixed public 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
*/ */
protected function getPaymentsUser(): ?object public 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');