Files
models/src/Concept/Model/Factory.php
2022-09-08 21:35:25 -04:00

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;
}