infinito/application/src/Entity/Attribut/FullPersonNameSourceAttribut.php
2018-11-21 17:55:48 +01:00

24 lines
522 B
PHP

<?php
namespace App\Entity\Attribut;
use App\Entity\Source\Complex\FullPersonNameSourceInterface;
trait FullPersonNameSourceAttribut
{
/**
* @var FullPersonNameSourceInterface
*/
protected $fullPersonNameSource;
public function getFullPersonNameSource(): FullPersonNameSourceInterface
{
return $this->fullPersonNameSource;
}
public function setFullPersonNameSource(FullPersonNameSourceInterface $fullname): void
{
$this->fullPersonNameSource = $fullname;
}
}