# monei/trunk/src/Templates/TemplateInterface.php

MONEI Payments for WooCommerce, version trunk. 15 lines.

- Page: https://pluginprobe.com/plugins/monei/trunk/code/src/Templates/TemplateInterface.php
- Raw: https://pluginprobe.com/plugins/monei/trunk/raw/src/Templates/TemplateInterface.php
- Modified: 2025-02-18T16:56:22+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/monei/trunk/code/src/Templates/TemplateInterface.php#L10-L20`.

```php
<?php

namespace Monei\Templates;

interface TemplateInterface {

	/**
	 * Render or echo the HTML for this template.
	 *
	 * @param array $data Data needed in the template to render
	 * @return void
	 */
	public function render( array $data ): void;
}

```
