mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-02-12 22:14:21 +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
|
|
{
|
|
}
|