GatewayCommand.php
4 years ago
PaymentAbandoned.php
4 years ago
PaymentCommand.php
3 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
23 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 | public function __construct(array $data) |
| 19 | { |
| 20 | $this->data = $data; |
| 21 | } |
| 22 | } |
| 23 |