jacobemerick/web

View on GitHub
src/Domain/Blog/Tag/TagRepositoryInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Jacobemerick\Web\Domain\Blog\Tag;

interface TagRepositoryInterface
{
    public function findTagByTitle($title);
    public function getAllTags();
    public function getTagCloud();
    public function getTagsForPost($post);
}