2018-09-13 14:39:03 +02:00
|
|
|
<?php
|
2018-09-13 16:51:58 +02:00
|
|
|
|
2018-09-13 14:39:03 +02:00
|
|
|
namespace App\Entity;
|
|
|
|
|
2018-09-13 15:55:48 +02:00
|
|
|
use App\Entity\Attribut\TypeAttributInterface;
|
2018-09-13 16:37:33 +02:00
|
|
|
use App\Entity\Attribut\LawAttributInterface;
|
2018-09-21 15:48:23 +02:00
|
|
|
use App\Entity\Method\NodeGrantedInterface;
|
|
|
|
use App\Entity\Attribut\RecieverGroupAttributInterface;
|
|
|
|
use App\Entity\Attribut\GrantAttributInterface;
|
|
|
|
use App\Entity\Attribut\NodeAttributInterface;
|
|
|
|
use App\Entity\Attribut\ConditionAttributInterface;
|
|
|
|
use App\Entity\Attribut\LayerAttributInterface;
|
2018-09-13 15:55:48 +02:00
|
|
|
|
2018-09-13 14:39:03 +02:00
|
|
|
/**
|
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
2018-09-21 15:48:23 +02:00
|
|
|
interface RightInterface extends TypeAttributInterface, LawAttributInterface, NodeGrantedInterface, GrantAttributInterface, RecieverGroupAttributInterface, NodeAttributInterface, ConditionAttributInterface, LayerAttributInterface
|
2018-09-13 14:39:03 +02:00
|
|
|
{
|
2018-09-13 16:51:58 +02:00
|
|
|
}
|