mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-10-10 17:58:07 +02:00
Renamed domain RightManagement to Right
This commit is contained in:
@@ -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;
|
||||
}
|
Reference in New Issue
Block a user