mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Continued the integration of person identity
This commit is contained in:
@@ -1,21 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity\Source\Combination;
|
||||
|
||||
use App\Entity\Source\Data\Name\FirstNameSourceInterface;
|
||||
use App\Entity\Source\Data\Name\SurnameSourceInterface;
|
||||
|
||||
/**
|
||||
* @todo Maybe a middle name would be helpfull in the future ;)
|
||||
* @author kevinfrantz
|
||||
* @todo Maybe a middle name would be helpfull in the future ;)
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface FullPersonNameSourceInterface extends CombinationSourceInterface
|
||||
{
|
||||
public function getFirstName():FirstNameSourceInterface;
|
||||
|
||||
public function setFirstName(FirstNameSourceInterface $name):void;
|
||||
|
||||
public function getSurname():SurnameSourceInterface;
|
||||
|
||||
public function setSurname(SurnameSourceInterface $name):void;
|
||||
}
|
||||
public function getFirstName(): FirstNameSourceInterface;
|
||||
|
||||
public function setFirstName(FirstNameSourceInterface $name): void;
|
||||
|
||||
public function getSurname(): SurnameSourceInterface;
|
||||
|
||||
public function setSurname(SurnameSourceInterface $name): void;
|
||||
}
|
||||
|
Reference in New Issue
Block a user