mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
15 lines
180 B
PHP
15 lines
180 B
PHP
|
<?php
|
||
|
namespace App\Entity;
|
||
|
|
||
|
use App\Entity\Attribut\NodeAttributInterface;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
*/
|
||
|
interface LawInterface extends NodeAttributInterface
|
||
|
{
|
||
|
}
|
||
|
|