infinito/application/src/Entity/Attribut/NameSourceAttribut.php
2018-09-21 19:51:28 +02:00

27 lines
442 B
PHP

<?php
namespace App\Entity\Attribut;
use App\Entity\NameSourceInterface;
/**
* @author kevinfrantz
*/
trait NameSourceAttribut
{
/**
* @var NameSourceInterface
*/
protected $nameSource;
public function setNameSource(NameSourceInterface $nameSource): void
{
$this->nameSource = $nameSource;
}
public function getNameSource(): NameSourceInterface
{
return $this->nameSource;
}
}