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