mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Renamed domain RequestManagement to Request
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Infinito\Domain\Request\User;
|
||||
|
||||
use Infinito\Domain\UserManagement\UserSourceDirectorServiceInterface;
|
||||
use Infinito\Domain\Request\Right\RequestedRightServiceInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
final class RequestedUserService extends RequestedUser implements RequestedUserServiceInterface
|
||||
{
|
||||
/**
|
||||
* @param UserSourceDirectorServiceInterface $userSourceDirectorService
|
||||
* @param RequestedRightServiceInterface $requestedRightService
|
||||
*/
|
||||
public function __construct(UserSourceDirectorServiceInterface $userSourceDirectorService, RequestedRightServiceInterface $requestedRightService)
|
||||
{
|
||||
parent::__construct($userSourceDirectorService, $requestedRightService);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user