Nayjest\Grids\Components\Base\TTaggable::hasTags PHP Method

hasTags() public method

Deprecation:
public hasTags ( array $tagNames ) : boolean
$tagNames array
return boolean
    public function hasTags(array $tagNames)
    {
        foreach ($tagNames as $tag) {
            if (!$this->hasTag($tag)) {
                return false;
            }
        }
        return true;
    }