mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
35 lines
912 B
PHP
35 lines
912 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Attribut;
|
||
|
|
||
|
use App\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
* @see LayerRepositoryFactoryServiceAttributInterface
|
||
|
*/
|
||
|
trait LayerRepositoryFactoryServiceAttribut
|
||
|
{
|
||
|
/**
|
||
|
* @var LayerRepositoryFactoryServiceInterface
|
||
|
*/
|
||
|
protected $layerRepositoryFactoryService;
|
||
|
|
||
|
/**
|
||
|
* @param LayerRepositoryFactoryServiceInterface $layerRepositoryFactoryService
|
||
|
*/
|
||
|
public function setLayerRepositoryFactoryService(LayerRepositoryFactoryServiceInterface $layerRepositoryFactoryService): void
|
||
|
{
|
||
|
$this->layerRepositoryFactoryService = $layerRepositoryFactoryService;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return LayerRepositoryFactoryServiceInterface
|
||
|
*/
|
||
|
public function getLayerRepositoryFactoryService(): LayerRepositoryFactoryServiceInterface
|
||
|
{
|
||
|
return $this->layerRepositoryFactoryService;
|
||
|
}
|
||
|
}
|