mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
10 lines
223 B
PHP
10 lines
223 B
PHP
<?php
|
|
|
|
namespace App\Entity\Source\Complex;
|
|
|
|
use App\Entity\Attribut\FullPersonNameSourceAttributInterface;
|
|
|
|
interface PersonIdentitySourceInterface extends ComplexSourceInterface, FullPersonNameSourceAttributInterface
|
|
{
|
|
}
|