mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-15 11:25:18 +01:00
10 lines
140 B
PHP
10 lines
140 B
PHP
|
<?php
|
||
|
namespace App\Entity\Source\Data;
|
||
|
|
||
|
use App\Entity\Source\SourceInterface;
|
||
|
|
||
|
interface DataSourceInterface extends SourceInterface
|
||
|
{
|
||
|
}
|
||
|
|