2018-09-24 18:41:26 +02:00
|
|
|
<?php
|
2018-10-29 19:01:00 +01:00
|
|
|
|
2018-10-28 15:25:32 +01:00
|
|
|
namespace App\Entity\Meta;
|
2018-09-24 18:41:26 +02:00
|
|
|
|
2018-10-03 16:14:15 +02:00
|
|
|
use App\Entity\Attribut\TypeAttributInterface;
|
|
|
|
use App\Entity\Attribut\LawAttributInterface;
|
2018-10-31 16:15:39 +01:00
|
|
|
use App\Entity\Attribut\RecieverAttributInterface;
|
2018-10-03 16:14:15 +02:00
|
|
|
use App\Entity\Attribut\GrantAttributInterface;
|
|
|
|
use App\Entity\Attribut\ConditionAttributInterface;
|
|
|
|
use App\Entity\Attribut\LayerAttributInterface;
|
2018-10-27 14:56:26 +02:00
|
|
|
use App\Entity\Method\RelationGrantedInterface;
|
|
|
|
use App\Entity\Attribut\RelationAttributInterface;
|
2018-09-24 18:41:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
2018-10-31 16:15:39 +01:00
|
|
|
interface RightInterface extends TypeAttributInterface, LawAttributInterface, RelationGrantedInterface, GrantAttributInterface, RecieverAttributInterface, RelationAttributInterface, ConditionAttributInterface, LayerAttributInterface, MetaInterface
|
2018-09-24 18:41:26 +02:00
|
|
|
{
|
|
|
|
}
|