mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-29 12:58:11 +02:00
20 lines
772 B
PHP
20 lines
772 B
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
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
|
|
{
|
|
}
|