Renamed class RequestedUserRightFacade to RequestedUserRight

This commit is contained in:
Kevin Frantz
2019-01-18 18:01:54 +01:00
parent effb1fc6da
commit 727a5c2aaf
7 changed files with 24 additions and 24 deletions

View File

@@ -9,7 +9,7 @@ use App\Exception\SetNotPossibleException;
/**
* @author kevinfrantz
*/
class RequestedUserRightFacade implements RequestedUserRightFacadeInterface
class RequestedUserRight implements RequestedUserRightInterface
{
/**
* @var UserSourceDirectorInterface

View File

@@ -1,10 +0,0 @@
<?php
namespace App\Domain\RequestManagement;
/**
* @author kevinfrantz
*/
interface RequestedUserRightFacadeServiceInterface extends RequestedUserRightFacadeInterface
{
}

View File

@@ -7,6 +7,6 @@ namespace App\Domain\RequestManagement;
*
* @author kevinfrantz
*/
interface RequestedUserRightFacadeInterface extends RequestedRightInterface
interface RequestedUserRightInterface extends RequestedRightInterface
{
}

View File

@@ -7,7 +7,7 @@ use App\Domain\UserManagement\UserSourceDirectorServiceInterface;
/**
* @author kevinfrantz
*/
final class RequestedUserRightFacadeService extends RequestedUserRightFacade implements RequestedUserRightFacadeServiceInterface
final class RequestedUserRightService extends RequestedUserRight implements RequestedUserRightServiceInterface
{
/**
* @param UserSourceDirectorServiceInterface $userSourceDirectorService

View File

@@ -0,0 +1,10 @@
<?php
namespace App\Domain\RequestManagement;
/**
* @author kevinfrantz
*/
interface RequestedUserRightServiceInterface extends RequestedUserRightInterface
{
}