# better-payment/2.3.1/includes/Contracts/Pageable.php

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

- Page: https://pluginprobe.com/plugins/better-payment/2.3.1/code/includes/Contracts/Pageable.php
- Raw: https://pluginprobe.com/plugins/better-payment/2.3.1/raw/includes/Contracts/Pageable.php
- Modified: 2024-01-09T05:12:38+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/Contracts/Pageable.php#L10-L20`.

```php
<?php

namespace Better_Payment\Lite\Contracts;

/**
 * The Page render interface
 * 
 * @since 0.0.1
 */

 interface Pageable {
         
         /**
        * Page content
        *
        * @return string
        * @since 0.0.1
        */
         public function render_page();
 }
```
