mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-25 13:12:22 +01:00
35 lines
480 B
PHP
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;
|
|
}
|
|
}
|