soliantconsulting/SimpleFM

View on GitHub
src/Repository/Builder/RepositoryBuilderInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php
declare(strict_types = 1);

namespace Soliant\SimpleFM\Repository\Builder;

use Soliant\SimpleFM\Repository\RepositoryInterface;

interface RepositoryBuilderInterface
{
    public function buildRepository(string $entityClassName) : RepositoryInterface;
}