mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 02:06:23 +02:00
20 lines
540 B
PHP
20 lines
540 B
PHP
<?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);
|
|
}
|
|
}
|