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