infinito/application/src/Entity/Attribut/PersonIdentitySourceAttribut.php

24 lines
526 B
PHP
Raw Normal View History

<?php
2018-11-15 19:55:03 +01:00
namespace App\Entity\Attribut;
2018-11-15 20:30:34 +01:00
use App\Entity\Source\Combination\PersonIdentitySourceInterface;
2018-11-15 19:55:03 +01:00
trait PersonIdentitySourceAttribut
{
/**
* @var PersonIdentitySourceInterface
*/
protected $personIdentitySource;
public function getPersonIdentitySource(): PersonIdentitySourceInterface
{
return $this->personIdentitySource;
}
public function setPersonIdentitySource(PersonIdentitySourceInterface $identity): void
{
$this->personIdentitySource = $identity;
}
}