generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
feb9f0b
commit cdd85e6
Showing
10 changed files
with
227 additions
and
44 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
Empty file.
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,10 @@ | ||
<?php | ||
|
||
namespace Netbums\Quickpay\Exceptions; | ||
|
||
use Exception; | ||
|
||
class ConfigNotCorrect extends Exception | ||
{ | ||
|
||
} |
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,10 @@ | ||
<?php | ||
|
||
namespace Netbums\Quickpay\Resources; | ||
|
||
use Netbums\Quickpay\Resources\Concerns\QuickpayApiConsumer; | ||
|
||
class CardResource | ||
{ | ||
use QuickpayApiConsumer; | ||
} |
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,10 @@ | ||
<?php | ||
|
||
namespace Netbums\Quickpay\Resources; | ||
|
||
use Netbums\Quickpay\Resources\Concerns\QuickpayApiConsumer; | ||
|
||
class FeeResource | ||
{ | ||
use QuickpayApiConsumer; | ||
} |
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 | ||
|
||
namespace Netbums\Quickpay\Resources; | ||
|
||
use Netbums\Quickpay\Resources\Concerns\QuickpayApiConsumer; | ||
|
||
class PayoutResource | ||
{ | ||
use QuickpayApiConsumer; | ||
|
||
// get payouts | ||
public function all() | ||
{ | ||
|
||
} | ||
|
||
// create payout | ||
public function create() | ||
{ | ||
|
||
} | ||
|
||
// create or update payout link | ||
public function createOrUpdateLink($id) | ||
{ | ||
|
||
} | ||
|
||
// delete payout link | ||
public function delete($id) | ||
{ | ||
|
||
} | ||
|
||
// get single payout | ||
public function find($id) | ||
{ | ||
|
||
} | ||
|
||
// update payout | ||
public function update($id) | ||
{ | ||
|
||
} | ||
|
||
// authorize a payout | ||
public function authorize($id) | ||
{ | ||
|
||
} | ||
} |
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,10 @@ | ||
<?php | ||
|
||
namespace Netbums\Quickpay\Resources; | ||
|
||
use Netbums\Quickpay\Resources\Concerns\QuickpayApiConsumer; | ||
|
||
class SubscriptionResource | ||
{ | ||
use QuickpayApiConsumer; | ||
} |