mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-04-05 06:42:20 +00:00
Implemented LayerRepositoryFactoryAttribut
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Attribut;
|
||||
|
||||
use App\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface LayerRepositoryFactoryServiceAttributInterface
|
||||
{
|
||||
/**
|
||||
* @param LayerRepositoryFactoryServiceInterface $layerRepositoryFactoryService
|
||||
*/
|
||||
public function setLayerRepositoryFactoryService(LayerRepositoryFactoryServiceInterface $layerRepositoryFactoryService): void;
|
||||
|
||||
/**
|
||||
* @return LayerRepositoryFactoryServiceInterface
|
||||
*/
|
||||
public function getLayerRepositoryFactoryService(): LayerRepositoryFactoryServiceInterface;
|
||||
}
|
||||
Reference in New Issue
Block a user