mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
14 lines
262 B
PHP
14 lines
262 B
PHP
<?php
|
|
|
|
namespace App\Entity\Meta;
|
|
|
|
use App\Entity\Attribut\RightsAttributInterface;
|
|
use App\Entity\Attribut\GrantAttributInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface LawInterface extends RightsAttributInterface, MetaInterface, GrantAttributInterface
|
|
{
|
|
}
|