Eccube\Entity\ProductTag::getTagId PHP Method

getTagId() public method

Get tag_id use csv export
public getTagId ( ) : integer
return integer
    public function getTagId()
    {
        if (empty($this->Tag)) {
            return null;
        }
        return $this->Tag->getId();
    }