# hello-plus/1.7.4/classes/renderable.php

Hello Plus, version 1.7.4. 13 lines.

- Page: https://pluginprobe.com/plugins/hello-plus/1.7.4/code/classes/renderable.php
- Raw: https://pluginprobe.com/plugins/hello-plus/1.7.4/raw/classes/renderable.php
- Modified: 2025-07-29T14:37:16+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/hello-plus/1.7.4/code/classes/renderable.php#L10-L20`.

```php
<?php

namespace HelloPlus\Classes;

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

interface Renderable {

	public function render(): void;
}

```
