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
<?php | |
namespace App\Services; | |
use GuzzleHttp\Client; | |
use GuzzleHttp\Exception\RequestException; | |
class iPaymer | |
{ | |
private $endpoint = 'http://127.0.0.1:8080/api/v{version}/'; |
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
<?php | |
namespace App\Services; | |
use Illuminate\Support\Facades\Http; | |
class iPaymer | |
{ | |
private $endpoint = 'http://127.0.0.1:8080/api/v{version}/'; | |
private $secret; |
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
<?php | |
class iPaymer | |
{ | |
private $endpoint = 'http://127.0.0.1:8080/api/v{version}/'; | |
private $secret; | |
private function __construct($secret, $v) | |
{ |