mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-15 19:35:18 +01:00
9 lines
172 B
PHP
9 lines
172 B
PHP
|
<?php
|
||
|
namespace App\Entity\Source\Data;
|
||
|
|
||
|
use App\Entity\Attribut\NameAttributInterface;
|
||
|
|
||
|
interface IdentityInterface extends DataSourceInterface, NameAttributInterface
|
||
|
{
|
||
|
}
|