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