# better-payment/2.3.3/includes/Controller.php

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

- Page: https://pluginprobe.com/plugins/better-payment/2.3.3/code/includes/Controller.php
- Raw: https://pluginprobe.com/plugins/better-payment/2.3.3/raw/includes/Controller.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.3/code/includes/Controller.php#L10-L20`.

```php
<?php 

namespace Better_Payment\Lite;

use Better_Payment\Lite\Traits\Helper;

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

/**
 * All classes must extend this class
 * 
 * @since 0.0.1
 */
class Controller {

    use Helper;

    public function __construct() {
        
    }
    
}
```
