Optimized RequestManagement

This commit is contained in:
Kevin Frantz
2019-01-15 22:57:54 +01:00
parent ee4dc0d052
commit 662541cec2
17 changed files with 161 additions and 76 deletions

View File

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

View File

@@ -1,12 +0,0 @@
<?php
namespace App\Domain\SourceManagement;
use App\Entity\Source\SourceInterface;
/**
* @author kevinfrantz
*/
interface RequestedSourceInterface extends SourceInterface
{
}

View File

@@ -1,10 +0,0 @@
<?php
namespace App\Domain\SourceManagement;
/**
* @author kevinfrantz
*/
final class RequestedSourceService extends RequestedSource implements RequestedSourceServiceInterface
{
}

View File

@@ -1,7 +0,0 @@
<?php
namespace App\Domain\SourceManagement;
interface RequestedSourceServiceInterface
{
}