2018-11-10 17:25:48 +01:00
|
|
|
<?php
|
2018-11-10 12:30:59 +01:00
|
|
|
|
2018-11-10 17:25:48 +01:00
|
|
|
namespace App\Entity\Source\Combination;
|
|
|
|
|
|
|
|
use App\Entity\Source\Data\Name\SurnameSourceInterface;
|
|
|
|
|
|
|
|
/**
|
2018-11-10 12:30:59 +01:00
|
|
|
* @todo Maybe a middle name would be helpfull in the future ;)
|
2018-11-10 17:25:48 +01:00
|
|
|
*
|
2018-11-10 12:30:59 +01:00
|
|
|
* @author kevinfrantz
|
2018-11-10 17:25:48 +01:00
|
|
|
*/
|
|
|
|
interface FullPersonNameSourceInterface extends CombinationSourceInterface
|
|
|
|
{
|
2018-11-10 12:30:59 +01:00
|
|
|
public function getSurname(): SurnameSourceInterface;
|
|
|
|
|
|
|
|
public function setSurname(SurnameSourceInterface $name): void;
|
|
|
|
}
|