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