Skip to content

Commit

Permalink
Merge pull request #18 from CoinPaymentsNet/Alpha
Browse files Browse the repository at this point in the history
Alpha
  • Loading branch information
letscode-u authored Apr 19, 2021
2 parents e113766 + e951273 commit 12aaeed
Show file tree
Hide file tree
Showing 78 changed files with 1,654 additions and 2,611 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

.idea
*.bak
13 changes: 0 additions & 13 deletions Api/CurrencyManagementInterface.php

This file was deleted.

23 changes: 23 additions & 0 deletions Api/InvoiceInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

namespace Coinpayments\CoinPayments\Api;

interface InvoiceInterface
{

/**
* @param $clientId
* @param $invoiceParams
* @return mixed
*/
public function createSimple($clientId, $invoiceParams);

/**
* @param $clientId
* @param $clientSecret
* @param $invoiceParams
* @return mixed
*/
public function createMerchant($clientId, $clientSecret, $invoiceParams);

}
13 changes: 0 additions & 13 deletions Api/TransactionInterface.php

This file was deleted.

22 changes: 22 additions & 0 deletions Api/WebHookInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php

namespace Coinpayments\CoinPayments\Api;

interface WebHookInterface
{

/**
* @param $clientId
* @param $clientSecret
* @param $webHookCallbackUrl
* @return mixed
*/
public function createWebHook($clientId, $clientSecret, $webHookCallbackUrl);

/**
* @param $clientId
* @param $clientSecret
* @return mixed
*/
public function getList($clientId, $clientSecret);
}
37 changes: 0 additions & 37 deletions Block/Form/Coinpayments.php

This file was deleted.

122 changes: 0 additions & 122 deletions Block/Iframe.php

This file was deleted.

26 changes: 0 additions & 26 deletions Block/Info.php

This file was deleted.

60 changes: 0 additions & 60 deletions Block/Redirect.php

This file was deleted.

62 changes: 0 additions & 62 deletions Block/Status.php

This file was deleted.

Loading

0 comments on commit 12aaeed

Please sign in to comment.