12 lines
292 B
PHP
12 lines
292 B
PHP
<?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;
|
|
}
|