infinito/application/src/Entity/Attribut/SurnameSourceAttributInterface.php

13 lines
285 B
PHP
Raw Normal View History

<?php
namespace App\Entity\Attribut;
2018-11-21 17:16:32 +01:00
use App\Entity\Source\Primitive\Name\SurnameSourceInterface;
2018-11-15 19:55:03 +01:00
interface SurnameSourceAttributInterface
{
public function getSurnameSource(): SurnameSourceInterface;
public function setSurnameSource(SurnameSourceInterface $name): void;
}