infinito/application/symfony/src/Attribut/LawAttributInterface.php

16 lines
241 B
PHP
Raw Normal View History

2018-09-13 14:39:03 +02:00
<?php
2018-09-13 16:51:58 +02:00
namespace Infinito\Attribut;
2018-09-13 14:39:03 +02:00
use Infinito\Entity\Meta\LawInterface;
2018-09-13 14:39:03 +02:00
/**
* @author kevinfrantz
*/
interface LawAttributInterface
{
2018-09-13 16:51:58 +02:00
public function setLaw(LawInterface $law): void;
2018-09-13 14:39:03 +02:00
public function getLaw(): LawInterface;
}