mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-25 21:22:21 +01:00
24 lines
486 B
PHP
24 lines
486 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut;
|
|
|
|
use App\Entity\Meta\Relation\Parent\CreatorRelationInterface;
|
|
|
|
trait CreatorRelationAttribut
|
|
{
|
|
/**
|
|
* @var CreatorRelationInterface
|
|
*/
|
|
protected $creatorRelation;
|
|
|
|
public function setCreatorRelation(CreatorRelationInterface $creatorRelation)
|
|
{
|
|
$this->creatorRelation = $creatorRelation;
|
|
}
|
|
|
|
public function getCreatorRelation(): CreatorRelationInterface
|
|
{
|
|
return $this->creatorRelation;
|
|
}
|
|
}
|