infinito/application/symfony/src/Attribut/SurnameSourceAttribut.php
2019-02-17 14:33:19 +01:00

24 lines
454 B
PHP

<?php
namespace Infinito\Attribut;
use Infinito\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;
}
}