mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
13 lines
268 B
PHP
13 lines
268 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut;
|
|
|
|
use App\Entity\Source\Data\Name\SurnameSourceInterface;
|
|
|
|
interface SurnameSourceAttributInterface
|
|
{
|
|
public function getSurname(): SurnameSourceInterface;
|
|
|
|
public function setSurname(SurnameSourceInterface $name): void;
|
|
}
|