Optimized SecureCRUDManagement Draft

This commit is contained in:
Kevin Frantz
2019-01-07 21:19:20 +01:00
parent f2828e0d5e
commit 6b29c5a577
21 changed files with 271 additions and 159 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace App\Domain\SecureCRUDManagement\Factory;
use App\Entity\Meta\RightInterface;
use App\Domain\SecureCRUDManagement\CRUD\Create\SecureCreatorInterface;
/**
* @author kevinfrantz
*/
interface SecureCRUDFactoryServiceInterface
{
/**
* @return SecureCreatorInterface
*/
public function create(RightInterface $requestedRight): SecureCreatorInterface;
}