Files
models/src/Concept/Model/Factory.php

12 lines
292 B
PHP
Raw Normal View History

2022-09-08 21:35:25 -04:00
<?php
namespace ProVM\Concept\Model;
use Psr\Container\ContainerInterface;
interface Factory
{
public function setContainer(ContainerInterface $container): Factory;
public function getContainer(): ContainerInterface;
public function get(string $repository_class): Repository;
2022-09-08 21:35:25 -04:00
}