jacobemerick/web

View on GitHub
src/Domain/Comment/Commenter/CommenterRepositoryInterface.php

Summary

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

namespace Jacobemerick\Web\Domain\Comment\Commenter;

interface CommenterRepositoryInterface
{
    public function createCommenter(array $commenter);
    public function getCommenter($commenterId);
    public function getCommenters($page = null, $perPage = null);
}