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