Implemented RequestedSource

This commit is contained in:
Kevin Frantz
2019-01-13 15:53:23 +01:00
parent 054a136f14
commit 62257b1771
3 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace App\Domain\SourceManagement;
use App\Entity\Source\AbstractSource;
/**
* @author kevinfrantz
*/
final class RequestedSource extends AbstractSource implements RequestedSourceInterface
{
}