# give/4.16.9/src/Framework/PaymentGateways/Commands/RespondToBrowser.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 23 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/PaymentGateways/Commands/RespondToBrowser.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Framework/PaymentGateways/Commands/RespondToBrowser.php
- Modified: 2022-06-17T00:03:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/PaymentGateways/Commands/RespondToBrowser.php#L10-L20`.

```php
<?php

namespace Give\Framework\PaymentGateways\Commands;

/***
 * @since 2.18.0
 */
class RespondToBrowser implements GatewayCommand {
    /**
     *
     * @var array
     */
    public $data;

    /**
     * @since 2.18.0
     */
    public function __construct(array $data)
    {
        $this->data = $data;
    }
}

```
