mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 14:57:28 +01:00
13 lines
328 B
PHP
13 lines
328 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Entity\Attribut;
|
||
|
|
||
|
use App\Entity\Source\Combination\FullPersonNameSourceInterface;
|
||
|
|
||
|
interface FullPersonNameSourceAttributInterface
|
||
|
{
|
||
|
public function getFullPersonNameSource(): FullPersonNameSourceInterface;
|
||
|
|
||
|
public function setFullPersonNameSource(FullPersonNameSourceInterface $fullname): void;
|
||
|
}
|