# better-payment/2.3.1/includes/Ajax.php

Better Payment – Instant Payments, Donations, Fundraising with Subscriptions &amp; More, version 2.3.1. 31 lines.

- Page: https://pluginprobe.com/plugins/better-payment/2.3.1/code/includes/Ajax.php
- Raw: https://pluginprobe.com/plugins/better-payment/2.3.1/raw/includes/Ajax.php
- Modified: 2022-04-18T10:23: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/better-payment/2.3.1/code/includes/Ajax.php#L10-L20`.

```php
<?php

namespace Better_Payment\Lite;

use Better_Payment\Lite\Traits\Helper;

/**
 * Exit if accessed directly
 */
if (!defined('ABSPATH')) {
    exit;
}

/**
 * Ajax handler class
 * 
 * @since 0.0.1
 */
class Ajax extends Controller{

    use Helper;
    /**
     * Class constructor
     * 
     * @since 0.0.1
     */
    public function __construct() {
        
    }
}

```
