<?php

namespace Tag\Tag;

class Tag
{
    /**
     * $tag object.
     */
    protected $tag;

    /**
     * Constructor.
     */
    public function __construct(\Tag\Tag\Interfaces\TagRepositoryInterface $tag)
    {
        $this->tag = $tag;
    }

    /**
     * Returns count of tag.
     *
     * @param array $filter
     *
     * @return int
     */
    public function count()
    {
        return  0;
    }
}