infinito/application/src/Entity/LawInterface.php

15 lines
306 B
PHP
Raw Normal View History

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