mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 14:27:28 +01:00
35 lines
912 B
PHP
35 lines
912 B
PHP
<?php
|
|
|
|
namespace Infinito\Attribut;
|
|
|
|
use Infinito\Domain\Repository\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;
|
|
}
|
|
}
|