mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-26 13:34:01 +01:00
35 lines
490 B
PHP
35 lines
490 B
PHP
<?php
|
|
|
|
namespace Infinito\Attribut;
|
|
|
|
use Infinito\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;
|
|
}
|
|
}
|