mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-04-05 06:42:20 +00:00
Optimized SecureCRUDManagement Draft
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace App\Domain\SecureCRUDManagement\CRUD\Create;
|
||||
|
||||
use App\Domain\SecureCRUDManagement\AbstractSecureCRUD;
|
||||
use App\Domain\SecureCRUDManagement\CRUD\AbstractSecureCRUD;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
namespace App\Domain\SecureCRUDManagement\CRUD\Create;
|
||||
|
||||
use App\Domain\SecureCRUDManagement\SecureCRUDInterface;
|
||||
use App\Entity\EntityInterface;
|
||||
use App\Domain\SecureCRUDManagement\CRUD\SecureCRUDInterface;
|
||||
|
||||
/**
|
||||
* @todo Implement!
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\SecureCRUDManagement\CRUD\Create;
|
||||
|
||||
use App\Entity\EntityInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
final class SecureHeredityCreator extends AbstractSecureCreator
|
||||
{
|
||||
/**
|
||||
* @todo Implement
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\SecureCRUDManagement\CRUD\Create\SecureCreatorInterface::create()
|
||||
*/
|
||||
public function create(): EntityInterface
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -2,7 +2,6 @@
|
||||
|
||||
namespace App\Domain\SecureCRUDManagement\CRUD\Create;
|
||||
|
||||
use App\Domain\SecureCRUDManagement\Create\AbstractSecureCreator;
|
||||
use App\Entity\EntityInterface;
|
||||
|
||||
/**
|
||||
@@ -10,11 +9,6 @@ use App\Entity\EntityInterface;
|
||||
*/
|
||||
final class SecureMemberCreator extends AbstractSecureCreator
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\SecureCRUDManagement\Create\SecureCreatorInterface::create()
|
||||
*/
|
||||
public function create(): EntityInterface
|
||||
{
|
||||
//todo implement!
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\SecureCRUDManagement\CRUD\Create;
|
||||
|
||||
use App\Entity\EntityInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
final class SecureRightCreator extends AbstractSecureCreator
|
||||
{
|
||||
/**
|
||||
* @todo Implement!
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\SecureCRUDManagement\CRUD\Create\SecureCreatorInterface::create()
|
||||
*/
|
||||
public function create(): EntityInterface
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user