mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
14 lines
244 B
PHP
14 lines
244 B
PHP
|
<?php
|
||
|
namespace App\Entity\Source;
|
||
|
|
||
|
use App\Entity\Attribut\NodeAttributInterface;
|
||
|
use App\Entity\Attribut\IdAttributInterface;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
interface SourceInterface extends IdAttributInterface, NodeAttributInterface
|
||
|
{
|
||
|
}
|