|
4 | 4 |
|
5 | 5 | use Illuminate\Support\Facades\Facade; |
6 | 6 | use MusahMusah\LaravelMultipaymentGateways\Contracts\PaystackContract; |
| 7 | +use MusahMusah\LaravelMultipaymentGateways\Gateways\PaystackService; |
| 8 | +use MusahMusah\LaravelMultipaymentGateways\Services\HttpClientWrapper; |
7 | 9 |
|
8 | 10 | /** |
| 11 | + * @method static HttpClientWrapper httpClient() |
| 12 | + * @method static HttpClientWrapper get(string $url, array $query = [], array $headers = []) |
| 13 | + * @method static HttpClientWrapper post(string $url, array $formParams = [], array $query = [], array $headers = []) |
| 14 | + * @method static HttpClientWrapper put(string $url, array $formParams = [], array $query = [], array $headers = []) |
| 15 | + * @method static HttpClientWrapper delete(string $url, array $formParams = [], array $query = [], array $headers = []) |
| 16 | + * @method static HttpClientWrapper patch(string $url, array $formParams = [], array $query = [], array $headers = []) |
| 17 | + * |
9 | 18 | * @method static array getTransaction(string $reference) |
10 | 19 | * @method static array getAllTransactions(array $payload) |
11 | 20 | * @method static array verifyTransaction(string $reference) |
|
20 | 29 | * @method static array getTransfer(string $transferCode) |
21 | 30 | * @method static array getAllTransfers() |
22 | 31 | * |
23 | | - * @return \MusahMusah\LaravelMultipaymentGateways\Gateways\PaystackService |
24 | | - * |
25 | | - * @see \MusahMusah\LaravelMultipaymentGateways\Gateways\PaystackService |
| 32 | + * @see PaystackService |
26 | 33 | */ |
27 | 34 | class Paystack extends Facade |
28 | 35 | { |
|
0 commit comments