mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
21 lines
482 B
PHP
21 lines
482 B
PHP
|
<?php
|
||
|
namespace App\Entity\Attribut;
|
||
|
|
||
|
use App\Entity\Meta\Relation\Parent\ParentRelationInterface;
|
||
|
|
||
|
trait ParentRelationAttribut
|
||
|
{
|
||
|
/**
|
||
|
*
|
||
|
* @var ParentRelationInterface
|
||
|
*/
|
||
|
protected $parentRelation;
|
||
|
|
||
|
public function setParentRelation(ParentRelationInterface $parentRelation):void{
|
||
|
$this->parentRelation = $parentRelation;
|
||
|
}
|
||
|
|
||
|
public function getParentRelation():ParentRelationInterface{
|
||
|
return $this->parentRelation;
|
||
|
}
|
||
|
}
|