Strimoid/Strimoid

View on GitHub
app/Contracts/Repositories/GroupRepository.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Strimoid\Contracts\Repositories;

use Strimoid\Exceptions\EntityNotFoundException;

interface GroupRepository
{
    public function getByName(string $name);

    /** @throws EntityNotFoundException */
    public function requireByName(...$params);
}