infinito/application/src/Entity/Attribut/ParentRelationAttribut.php

21 lines
482 B
PHP
Raw Normal View History

2018-11-25 23:12:42 +01:00
<?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;
}
}