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;
|
2022-09-09 13:15:11 -04:00
|
|
|
public function get(string $repository_class): Repository;
|
2022-09-08 21:35:25 -04:00
|
|
|
}
|