mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-25 13:12:22 +01:00
13 lines
292 B
PHP
13 lines
292 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Entity\Attribut;
|
||
|
|
||
|
use App\Entity\Source\Data\Name\FirstNameSourceInterface;
|
||
|
|
||
|
interface FirstNameSourceAttributInterface
|
||
|
{
|
||
|
public function getFirstNameSource(): FirstNameSourceInterface;
|
||
|
|
||
|
public function setFirstNameSource(FirstNameSourceInterface $name): void;
|
||
|
}
|