mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-02-12 14:04:21 +01:00
16 lines
174 B
PHP
16 lines
174 B
PHP
|
<?php
|
||
|
namespace App\Entity;
|
||
|
|
||
|
use App\Entity\Attribut\NodeAttribut;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
*/
|
||
|
class Law implements LawInterface
|
||
|
{
|
||
|
use NodeAttribut;
|
||
|
}
|
||
|
|