mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-02-13 06:24:21 +01:00
15 lines
322 B
PHP
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
|
|
{
|
|
}
|