infinito/application/src/Entity/LawInterface.php

15 lines
350 B
PHP
Raw Normal View History

2018-09-24 18:41:26 +02:00
<?php
namespace App\Entity\Interfaces;
use App\Entity\Attribut\Interfaces\RightsAttributInterface;
use App\Entity\Method\Interfaces\NodeGrantedInterface;
use App\Entity\Attribut\Interfaces\NodeAttributInterface;
/**
* @author kevinfrantz
*/
interface LawInterface extends RightsAttributInterface, NodeGrantedInterface, NodeAttributInterface
{
}