composer package updates
[openemr.git] / vendor / zendframework / zend-tag / src / Cloud / Decorator / DecoratorInterface.php
blobc78feb2bbee3e3cdc3a32d346eaeda875e5c4709
1 <?php
2 /**
3 * @see https://github.com/zendframework/zend-tag for the canonical source repository
4 * @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5 * @license https://github.com/zendframework/zend-tag/blob/master/LICENSE.md New BSD License
6 */
8 namespace Zend\Tag\Cloud\Decorator;
10 /**
11 * Interface for decorators
13 interface DecoratorInterface
15 /**
16 * Constructor
18 * Allow passing options to the constructor.
20 * @param mixed $options
22 public function __construct($options = null);
24 /**
25 * Render a list of tags
27 * @param mixed $tags
28 * @return string
30 public function render($tags);