mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 10:55:17 +01:00
18 lines
410 B
PHP
18 lines
410 B
PHP
<?php
|
|
|
|
namespace App\Entity\Source\Combination;
|
|
|
|
use App\Entity\Source\Data\Name\SurnameSourceInterface;
|
|
|
|
/**
|
|
* @todo Maybe a middle name would be helpfull in the future ;)
|
|
*
|
|
* @author kevinfrantz
|
|
*/
|
|
interface FullPersonNameSourceInterface extends CombinationSourceInterface
|
|
{
|
|
public function getSurname(): SurnameSourceInterface;
|
|
|
|
public function setSurname(SurnameSourceInterface $name): void;
|
|
}
|