mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 05:47:11 +02:00
Implemented LayerRepositoryFactoryAttribut
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user