Changed AbstractDataSoure to AbstractPrimitiveSource

This commit is contained in:
Kevin Frantz
2018-11-21 18:22:05 +01:00
parent aaf335ce30
commit 11dc206575
7 changed files with 27 additions and 17 deletions

View File

@@ -2,8 +2,13 @@
namespace App\Entity\Source\Complex;
use App\Entity\Source\Primitive\DataSourceInterface;
use App\Entity\Source\SourceInterface;
interface ComplexSourceInterface extends DataSourceInterface
/**
* Complex sources contain out of one or more primitive sources.
*
* @author kevinfrantz
*/
interface ComplexSourceInterface extends SourceInterface
{
}