# give/4.16.9/src/Framework/FieldsAPI/PaymentGateways.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/FieldsAPI/PaymentGateways.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Framework/FieldsAPI/PaymentGateways.php
- Modified: 2023-10-16T17:55:46+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/FieldsAPI/PaymentGateways.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace Give\Framework\FieldsAPI;

class PaymentGateways extends Field {

    /**
     * @since 3.0.0
     *
     * @type bool
     */
    public $isTestMode;

    const TYPE = 'gateways';

    /**
     * @since 3.0.0
     */
    public function testMode( bool $isTestMode = true ): PaymentGateways {
        $this->isTestMode = $isTestMode;

        return $this;
    }
}

```
