mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-04-04 22:33:48 +00:00
16 lines
429 B
PHP
16 lines
429 B
PHP
<?php
|
|
|
|
namespace Infinito\Attribut;
|
|
|
|
use Infinito\Domain\Repository\LayerRepositoryFactoryServiceInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface LayerRepositoryFactoryServiceAttributInterface
|
|
{
|
|
public function setLayerRepositoryFactoryService(LayerRepositoryFactoryServiceInterface $layerRepositoryFactoryService): void;
|
|
|
|
public function getLayerRepositoryFactoryService(): LayerRepositoryFactoryServiceInterface;
|
|
}
|