Renamed domain RequestManagement to Request

This commit is contained in:
Kevin Frantz
2019-05-30 16:52:02 +02:00
parent 9af7f47b85
commit b8029bb7cc
75 changed files with 149 additions and 149 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace Infinito\Domain\Request\Entity;
use Infinito\Domain\Repository\LayerRepositoryFactoryServiceInterface;
/**
* @author kevinfrantz
*/
class RequestedEntityService extends LazyRequestedEntity implements RequestedEntityServiceInterface
{
/**
* @param LayerRepositoryFactoryServiceInterface $layerRepositoryFactoryService
*/
public function __construct(LayerRepositoryFactoryServiceInterface $layerRepositoryFactoryService = null)
{
parent::__construct($layerRepositoryFactoryService);
}
}