infinito/application/symfony/src/Entity/Attribut/PersonIdentitySourceAttribut.php
2019-01-05 23:52:37 +01:00

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;
}
}