2019-01-27 18:38:21 +01:00

35 lines
480 B
PHP

<?php
namespace App\Attribut;
use App\Entity\Meta\LawInterface;
/**
* @author kevinfrantz
*
* @see LawAttributInterface
*/
trait LawAttribut
{
/**
* @var LawInterface
*/
protected $law;
/**
* @param LawInterface $law
*/
public function setLaw(LawInterface $law): void
{
$this->law = $law;
}
/**
* @return LawInterface
*/
public function getLaw(): LawInterface
{
return $this->law;
}
}