infinito/application/src/Entity/LawInterface.php
2018-09-21 19:43:48 +02:00

15 lines
306 B
PHP

<?php
namespace App\Entity;
use App\Entity\Attribut\RightsAttributInterface;
use App\Entity\Method\NodeGrantedInterface;
use App\Entity\Attribut\NodeAttributInterface;
/**
* @author kevinfrantz
*/
interface LawInterface extends RightsAttributInterface, NodeGrantedInterface, NodeAttributInterface
{
}