diff -r 06a22ff5d58d -r 13f43f53d0ba Model/CategoryInterface.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Model/CategoryInterface.php Sun Oct 16 14:50:48 2011 +0200 @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace IRI\Bundle\WikiTagBundle\Model; + +interface CategoryInterface { + + /** + * Get id + * + * @return integer + */ + function getId(); + + /** + * Set label + * + * @param string $label + */ + function setLabel($label); + + /** + * Get label + * + * @return string + */ + function getLabel(); + +} \ No newline at end of file