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

14 lines
236 B
PHP

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