mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-08-21 19:25:03 +02:00
27 lines
536 B
PHP
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;
|
|
}
|