Optimized SecureCRUDFactory

This commit is contained in:
Kevin Frantz
2019-01-08 15:51:28 +01:00
parent 51667ee381
commit 814fa978e0
13 changed files with 97 additions and 150 deletions

View File

@@ -3,7 +3,7 @@
namespace App\Domain\SecureCRUDManagement\Factory;
use App\Entity\Meta\RightInterface;
use App\Domain\SecureCRUDManagement\CRUD\Create\SecureCreatorInterface;
use App\Domain\SecureCRUDManagement\CRUD\SecureCRUDInterface;
/**
* @author kevinfrantz
@@ -11,7 +11,7 @@ use App\Domain\SecureCRUDManagement\CRUD\Create\SecureCreatorInterface;
interface SecureCRUDFactoryServiceInterface
{
/**
* @return SecureCreatorInterface
* @return SecureCRUDInterface
*/
public function create(RightInterface $requestedRight): SecureCreatorInterface;
public function create(RightInterface $requestedRight): SecureCRUDInterface;
}