mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-04-08 16:22:20 +00: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
|
|
{
|
|
}
|