mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 14:57:28 +01:00
24 lines
509 B
PHP
24 lines
509 B
PHP
|
<?php
|
||
|
|
||
|
namespace Entity\Attribut;
|
||
|
|
||
|
use App\Entity\Source\Data\PersonIdentitySourceInterface;
|
||
|
|
||
|
trait PersonIdentityAttribut
|
||
|
{
|
||
|
/**
|
||
|
* @var PersonIdentitySourceInterface
|
||
|
*/
|
||
|
protected $personIdentitySource;
|
||
|
|
||
|
public function getPersonIdentitySource(): PersonIdentitySourceInterface
|
||
|
{
|
||
|
return $this->personIdentitySource;
|
||
|
}
|
||
|
|
||
|
public function setPersonIdentitySource(PersonIdentitySourceInterface $identity): void
|
||
|
{
|
||
|
$this->personIdentitySource = $identity;
|
||
|
}
|
||
|
}
|