Renamed domain RightManagement to Right

This commit is contained in:
Kevin Frantz
2019-05-30 16:55:08 +02:00
parent b8029bb7cc
commit e9110622db
16 changed files with 24 additions and 24 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace Infinito\Domain\Right;
use Infinito\Entity\Meta\RightInterface;
use Infinito\Domain\Request\Right\RequestedRightInterface;
/**
* Allows to transform an Requested Right to a Entity Right.
*
* @author kevinfrantz
*/
interface RightTransformerServiceInterface
{
/**
* @param RequestedRightInterface $requestedRight
*
* @return RightInterface
*/
public function transform(RequestedRightInterface $requestedRight): RightInterface;
}