mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-01-17 04:26:50 +00:00
14 lines
264 B
PHP
14 lines
264 B
PHP
<?php
|
|
|
|
namespace App\Entity\Meta;
|
|
|
|
use App\Entity\Attribut\RightsAttributInterface;
|
|
use App\Entity\Method\RelationGrantedInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface LawInterface extends RightsAttributInterface, RelationGrantedInterface, MetaInterface
|
|
{
|
|
}
|