Use full class name without having to specify namespace beforehand

This commit is contained in:
2022-09-09 13:15:11 -04:00
parent 55275d2d75
commit 9834eb70a4
2 changed files with 3 additions and 22 deletions

View File

@ -7,7 +7,5 @@ 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;
public function get(string $repository_class): Repository;
}