mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-02-28 15:22:42 +00:00
10 lines
168 B
PHP
10 lines
168 B
PHP
<?php
|
|
|
|
namespace App\Entity\Source\Complex;
|
|
|
|
use App\Entity\Source\Primitive\DataSourceInterface;
|
|
|
|
interface CombinationSourceInterface extends DataSourceInterface
|
|
{
|
|
}
|