-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2eb4af7
commit 9fb4d62
Showing
10 changed files
with
147 additions
and
618 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace PayWith\Processors\Flutterwave; | ||
|
||
use PayWith\Helpers\DoSomething; | ||
use PayWith\Exceptions\PayException; | ||
use PayWith\Processors\Flutterwave\Flutterwave; | ||
|
||
class Banks extends Flutterwave | ||
{ | ||
/** | ||
* Fetch list of available banks | ||
* | ||
* @since 0.6 | ||
*/ | ||
public function list(): array | ||
{ | ||
|
||
} | ||
|
||
/** | ||
* Get a bank info | ||
* | ||
* @since 0.6 | ||
*/ | ||
public function get(): array | ||
{ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace PayWith\Processors\Flutterwave; | ||
|
||
use PayWith\Helpers\DoSomething; | ||
use PayWith\Exceptions\PayException; | ||
use PayWith\Processors\Flutterwave\Flutterwave; | ||
|
||
/** | ||
* Identity Flutterwave wrapper | ||
* | ||
* @since 0.6 | ||
*/ | ||
class Identity extends Flutterwave | ||
{ | ||
/** | ||
* Curl request | ||
* | ||
* @var Curl | ||
*/ | ||
protected $request; | ||
|
||
/** | ||
* Constructor | ||
* | ||
* @since 0.5 | ||
*/ | ||
public function __construct(string $secretKey) | ||
{ | ||
parent::__construct($secretKey); | ||
} | ||
|
||
/** | ||
* Get the customer info from BVN | ||
* | ||
* @since 0.6 | ||
*/ | ||
public static function bvnResolve(): array | ||
{ | ||
|
||
} | ||
|
||
/** | ||
* Match a customer info with that of their BVN | ||
* | ||
* @since 0.6 | ||
*/ | ||
public static function bvnMatch( array $customer_info ): bool | ||
{ | ||
|
||
} | ||
} |
Oops, something went wrong.