mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
24 lines
466 B
PHP
24 lines
466 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Entity\Attribut;
|
||
|
|
||
|
use App\Entity\Source\Data\Name\FirstNameSourceInterface;
|
||
|
|
||
|
trait FirstNameSourceAttribut
|
||
|
{
|
||
|
/**
|
||
|
* @var FirstNameSourceInterface
|
||
|
*/
|
||
|
protected $firstNameSource;
|
||
|
|
||
|
public function getFirstNameSource(): FirstNameSourceInterface
|
||
|
{
|
||
|
return $this->firstNameSource;
|
||
|
}
|
||
|
|
||
|
public function setFirstNameSource(FirstNameSourceInterface $name): void
|
||
|
{
|
||
|
$this->firstNameSource = $name;
|
||
|
}
|
||
|
}
|