mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-02-13 14:28:04 +01:00
10 lines
185 B
PHP
10 lines
185 B
PHP
<?php
|
|
|
|
namespace App\Entity\Source\Data;
|
|
|
|
use App\Entity\Attribut\NameAttributInterface;
|
|
|
|
interface PersonIdentitySourceInterface extends DataSourceInterface, NameAttributInterface
|
|
{
|
|
}
|