Skip to content

Commit 61c6392

Browse files
committed
fix: Refactor wallet ,refund transaction
1 parent 344c800 commit 61c6392

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Provider/AbstractProvider.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace PhpMonsters\LaraWallet\Provider;
44

55
use App\Containers\AppSection\Transaction\Models\Transaction;
6+
use App\Containers\AppSection\Wallet\Models\WalletProvider;
67
use Illuminate\Contracts\Foundation\Application;
78
use Illuminate\Contracts\View\Factory;
89
use Illuminate\Contracts\View\View;
@@ -20,7 +21,7 @@
2021
* @package Wallet\Wallet
2122
* @version v1.0
2223
*/
23-
abstract class AbstractProvider
24+
abstract class AbstractProvider extends WalletProvider
2425
{
2526
const CONNECTION_TIME_OUT = 5;
2627

@@ -124,7 +125,7 @@ public function sendInfoToAp(string $hostRequest, string $hostRequestSign, $meth
124125
)->$method(
125126
$url
126127
);
127-
128+
128129
return json_decode($rawResponse->body(), true);
129130
}
130131

0 commit comments

Comments
 (0)