GatewayCommand.php
4 years ago
PaymentAbandoned.php
4 years ago
PaymentCommand.php
4 years ago
PaymentComplete.php
4 years ago
PaymentProcessing.php
4 years ago
PaymentRefunded.php
4 years ago
RedirectOffsite.php
4 years ago
RespondToBrowser.php
4 years ago
SubscriptionComplete.php
4 years ago
RespondToBrowser.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Framework\PaymentGateways\Commands; |
| 4 | |
| 5 | /*** |
| 6 | * @since 2.18.0 |
| 7 | */ |
| 8 | class RespondToBrowser implements GatewayCommand { |
| 9 | /** |
| 10 | * |
| 11 | * @var array |
| 12 | */ |
| 13 | public $data; |
| 14 | |
| 15 | /** |
| 16 | * @since 2.18.0 |
| 17 | * |
| 18 | * @param array $data |
| 19 | */ |
| 20 | public function __construct($data) |
| 21 | { |
| 22 | $this->data = $data; |
| 23 | } |
| 24 | } |
| 25 |