mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Renamed class RequestedUserRightFacade to RequestedUserRight
This commit is contained in:
@@ -9,7 +9,7 @@ use App\Exception\SetNotPossibleException;
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
class RequestedUserRightFacade implements RequestedUserRightFacadeInterface
|
||||
class RequestedUserRight implements RequestedUserRightInterface
|
||||
{
|
||||
/**
|
||||
* @var UserSourceDirectorInterface
|
@@ -1,10 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface RequestedUserRightFacadeServiceInterface extends RequestedUserRightFacadeInterface
|
||||
{
|
||||
}
|
@@ -7,6 +7,6 @@ namespace App\Domain\RequestManagement;
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface RequestedUserRightFacadeInterface extends RequestedRightInterface
|
||||
interface RequestedUserRightInterface extends RequestedRightInterface
|
||||
{
|
||||
}
|
@@ -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
|
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\RequestManagement;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface RequestedUserRightServiceInterface extends RequestedUserRightInterface
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user