1 <?php
2 /**
3 * @package FrameworkOnFramework
4 * @subpackage hal
5 * @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba Ltd. All rights reserved.
6 * @license GNU General Public License version 2 or later; see LICENSE.txt
7 */
8 defined('FOF_INCLUDED') or die;
9
10 /**
11 * Interface for HAL document renderers
12 *
13 * @package FrameworkOnFramework
14 * @since 2.1
15 */
16 interface FOFHalRenderInterface
17 {
18 /**
19 * Render a HAL document into a representation suitable for consumption.
20 *
21 * @param array $options Renderer-specific options
22 *
23 * @return void
24 */
25 public function render($options = array());
26 }
27