Implemented ActionHandlerServiceIntegrationTest

This commit is contained in:
Kevin Frantz
2019-02-16 10:47:41 +01:00
parent 0bdcdd7610
commit 9417e4ac7a
5 changed files with 67 additions and 6 deletions

View File

@@ -3,7 +3,7 @@
namespace App\Domain\RightManagement;
use App\Entity\Meta\RightInterface;
use App\Domain\RequestManagement\Right\RequestedRight;
use App\Domain\RequestManagement\Right\RequestedRightInterface;
/**
* Allows to transform an Requested Right to a Entity Right.
@@ -13,9 +13,9 @@ use App\Domain\RequestManagement\Right\RequestedRight;
interface RightTransformerServiceInterface
{
/**
* @param RequestedRight $requestedRight
* @param RequestedRightInterface $requestedRight
*
* @return RightInterface
*/
public function transform(RequestedRight $requestedRight): RightInterface;
public function transform(RequestedRightInterface $requestedRight): RightInterface;
}