Repository URL to install this package:
|
Version:
6.2.0 ▾
|
<?php
/**
* Created by IntelliJ IDEA.
* User: martino
* Date: 2019-02-09
* Time: 09:42
*/
namespace DigitalAscetic\TagsBundle\Model;
interface ITag
{
public function getId();
public function getTagName(): string;
public function getCategory(): ?string;
}