infinito/application/symfony/src/Attribut/SurnameSourceAttribut.php
2019-01-20 10:41:58 +01:00

24 lines
444 B
PHP

<?php
namespace App\Attribut;
use App\Entity\Source\Primitive\Name\SurnameSourceInterface;
trait SurnameSourceAttribut
{
/**
* @var SurnameSourceInterface
*/
protected $surnameSource;
public function getSurnameSource(): SurnameSourceInterface
{
return $this->surnameSource;
}
public function setSurnameSource(SurnameSourceInterface $name): void
{
$this->surnameSource = $name;
}
}