mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
24 lines
444 B
PHP
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;
|
|
}
|
|
}
|