mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
16 lines
238 B
PHP
16 lines
238 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut;
|
|
|
|
use App\Entity\Meta\LawInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface LawAttributInterface
|
|
{
|
|
public function setLaw(LawInterface $law): void;
|
|
|
|
public function getLaw(): LawInterface;
|
|
}
|