mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 14:57:28 +01:00
13 lines
227 B
PHP
13 lines
227 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Domain\SourceManagement;
|
||
|
|
||
|
use App\Domain\EntityManagement\EntityMetaInformationInterface;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
interface SourceMetaInformationInterface extends EntityMetaInformationInterface
|
||
|
{
|
||
|
}
|