mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
15 lines
245 B
PHP
15 lines
245 B
PHP
<?php
|
|
|
|
namespace App\Entity\Source\Complex;
|
|
|
|
use App\Entity\Source\SourceInterface;
|
|
|
|
/**
|
|
* Complex sources contain out of one or more primitive sources.
|
|
*
|
|
* @author kevinfrantz
|
|
*/
|
|
interface ComplexSourceInterface extends SourceInterface
|
|
{
|
|
}
|