mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
24 lines
526 B
PHP
24 lines
526 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Entity\Attribut;
|
||
|
|
||
|
use App\Entity\Source\Combination\FullPersonNameSourceInterface;
|
||
|
|
||
|
trait FullPersonNameSourceAttribut
|
||
|
{
|
||
|
/**
|
||
|
* @var FullPersonNameSourceInterface
|
||
|
*/
|
||
|
protected $fullPersonNameSource;
|
||
|
|
||
|
public function getFullPersonNameSource(): FullPersonNameSourceInterface
|
||
|
{
|
||
|
return $this->fullPersonNameSource;
|
||
|
}
|
||
|
|
||
|
public function setFullPersonNameSource(FullPersonNameSourceInterface $fullname): void
|
||
|
{
|
||
|
$this->fullPersonNameSource = $fullname;
|
||
|
}
|
||
|
}
|