This commit is contained in:
Yuri Kuznetsov
2023-02-17 16:38:13 +02:00
parent da7fc9d6a0
commit fbbb7c99c0
12 changed files with 70 additions and 123 deletions
@@ -29,10 +29,12 @@
namespace Espo\ORM\Repository;
use Espo\ORM\Entity;
interface RepositoryFactory
{
/**
* @return Repository<\Espo\ORM\Entity>
* @return Repository<Entity>
*/
public function create(string $entityType): Repository;
}