mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 22:59:32 +01:00
27 lines
423 B
PHP
27 lines
423 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut;
|
|
|
|
use App\Entity\Meta\RelationInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
trait RelationAttribut
|
|
{
|
|
/**
|
|
* @var RelationInterface
|
|
*/
|
|
protected $relation;
|
|
|
|
public function setRelation(RelationInterface $relation): void
|
|
{
|
|
$this->relation = $relation;
|
|
}
|
|
|
|
public function getRelation(): RelationInterface
|
|
{
|
|
return $this->relation;
|
|
}
|
|
}
|