2019-01-27 11:53:29 +01:00
|
|
|
<?php
|
|
|
|
|
2019-02-17 14:33:19 +01:00
|
|
|
namespace Infinito\Attribut;
|
2019-01-27 11:53:29 +01:00
|
|
|
|
2019-02-17 14:33:19 +01:00
|
|
|
use Infinito\Domain\RepositoryManagement\LayerRepositoryFactoryServiceInterface;
|
2019-01-27 11:53:29 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @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;
|
|
|
|
}
|
|
|
|
}
|