2018-11-25 23:12:42 +01:00
|
|
|
<?php
|
2018-11-25 23:19:38 +01:00
|
|
|
|
2019-01-20 10:41:58 +01:00
|
|
|
namespace App\Attribut;
|
2018-11-25 23:12:42 +01:00
|
|
|
|
2018-11-25 23:38:22 +01:00
|
|
|
use App\Entity\Meta\Relation\Parent\CreatorRelationInterface;
|
2018-11-25 23:12:42 +01:00
|
|
|
|
|
|
|
trait CreatorRelationAttribut
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var CreatorRelationInterface
|
|
|
|
*/
|
|
|
|
protected $creatorRelation;
|
2018-11-25 23:19:38 +01:00
|
|
|
|
|
|
|
public function setCreatorRelation(CreatorRelationInterface $creatorRelation)
|
|
|
|
{
|
2018-11-25 23:12:42 +01:00
|
|
|
$this->creatorRelation = $creatorRelation;
|
|
|
|
}
|
2018-11-25 23:19:38 +01:00
|
|
|
|
|
|
|
public function getCreatorRelation(): CreatorRelationInterface
|
|
|
|
{
|
2018-11-25 23:12:42 +01:00
|
|
|
return $this->creatorRelation;
|
|
|
|
}
|
|
|
|
}
|