infinito/application/symfony/src/Attribut/RequestedRightAttributInterface.php
2019-01-26 19:39:36 +01:00

27 lines
536 B
PHP

<?php
namespace App\Attribut;
use App\Domain\RequestManagement\Right\RequestedRightInterface;
/**
* @author kevinfrantz
*/
interface RequestedRightAttributInterface
{
/**
* @return bool
*/
public function hasRequestedRight(): bool;
/**
* @param RequestedRightInterface $requestedRight
*/
public function setRequestedRight(RequestedRightInterface $requestedRight): void;
/**
* @return RequestedRightInterface
*/
public function getRequestedRight(): RequestedRightInterface;
}