composer package updates
[openemr.git] / vendor / zendframework / zend-tag / src / TaggableInterface.php
blob8a37c6ab3d41f58c0e549027963ccf16003a5404
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;
10 interface TaggableInterface
12 /**
13 * Get the title of the tag
15 * @return string
17 public function getTitle();
19 /**
20 * Get the weight of the tag
22 * @return float
24 public function getWeight();
26 /**
27 * Set a parameter
29 * @param string $name
30 * @param string $value
32 public function setParam($name, $value);
34 /**
35 * Get a parameter
37 * @param string $name
38 * @return mixed
40 public function getParam($name);