2018-09-24 18:41:26 +02:00
|
|
|
<?php
|
|
|
|
|
2018-10-03 15:50:46 +02:00
|
|
|
namespace App\Entity;
|
2018-09-24 18:41:26 +02:00
|
|
|
|
|
|
|
use App\Entity\Attribut\Interfaces\TypeAttributInterface;
|
|
|
|
use App\Entity\Attribut\Interfaces\LawAttributInterface;
|
|
|
|
use App\Entity\Method\Interfaces\NodeGrantedInterface;
|
|
|
|
use App\Entity\Attribut\Interfaces\RecieverGroupAttributInterface;
|
|
|
|
use App\Entity\Attribut\Interfaces\GrantAttributInterface;
|
|
|
|
use App\Entity\Attribut\Interfaces\NodeAttributInterface;
|
|
|
|
use App\Entity\Attribut\Interfaces\ConditionAttributInterface;
|
|
|
|
use App\Entity\Attribut\Interfaces\LayerAttributInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
|
|
|
interface RightInterface extends TypeAttributInterface, LawAttributInterface, NodeGrantedInterface, GrantAttributInterface, RecieverGroupAttributInterface, NodeAttributInterface, ConditionAttributInterface, LayerAttributInterface
|
|
|
|
{
|
|
|
|
}
|