mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-15 03:15:18 +01:00
13 lines
228 B
PHP
13 lines
228 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Domain\RightManagement\RightRequestManagement;
|
||
|
|
||
|
/**
|
||
|
* Offers a Service for managing the rights.
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
interface RequestedUserRightFacadeInterface extends RequestedRightInterface
|
||
|
{
|
||
|
}
|