mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +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
|
|
{
|
|
}
|