infinito/application/src/Entity/LawInterface.php
2018-10-27 14:56:26 +02:00

15 lines
322 B
PHP

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