mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-12 18:12:39 +01:00
13 lines
288 B
PHP
13 lines
288 B
PHP
<?php
|
|
|
|
namespace Infinito\Attribut;
|
|
|
|
use Infinito\Entity\Source\Primitive\Name\SurnameSourceInterface;
|
|
|
|
interface SurnameSourceAttributInterface
|
|
{
|
|
public function getSurnameSource(): SurnameSourceInterface;
|
|
|
|
public function setSurnameSource(SurnameSourceInterface $name): void;
|
|
}
|