Implemented surname attribut and nameattribut

This commit is contained in:
Kevin Frantz
2018-11-11 21:24:54 +01:00
parent ea20f7562a
commit 69dbc58954
5 changed files with 44 additions and 5 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace App\Entity\Attribut;
use App\Entity\Source\Data\Name\SurnameSourceInterface;
interface SurnameSourceAttributInterface
{
public function getSurname(): SurnameSourceInterface;
public function setSurname(SurnameSourceInterface $name): void;
}