14 lines
397 B
PHP
14 lines
397 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 setNamespace(string $namespace): Factory;
|
|
public function getNamespace(): string;
|
|
public function get(string $repository_name): Repository;
|
|
}
|