mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 06:27:24 +01:00
Autoformat of code
This commit is contained in:
parent
edf0a34e59
commit
7e685954cf
@ -9,7 +9,9 @@ use App\Domain\SecureCRUDManagement\SecureCRUDFactoryService;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
*
|
||||||
* @todo Implement!
|
* @todo Implement!
|
||||||
|
*
|
||||||
* @see https://de.wikipedia.org/wiki/CRUD
|
* @see https://de.wikipedia.org/wiki/CRUD
|
||||||
*/
|
*/
|
||||||
abstract class AbstractAPIController extends AbstractController
|
abstract class AbstractAPIController extends AbstractController
|
||||||
|
@ -8,8 +8,8 @@ use Symfony\Component\HttpFoundation\Response;
|
|||||||
use App\Domain\SecureCRUDManagement\SecureCRUDFactoryService;
|
use App\Domain\SecureCRUDManagement\SecureCRUDFactoryService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
*
|
||||||
* @todo Implement!
|
* @todo Implement!
|
||||||
*/
|
*/
|
||||||
class HeredityApiController extends AbstractAPIController
|
class HeredityApiController extends AbstractAPIController
|
||||||
|
@ -9,6 +9,7 @@ use App\Domain\SecureCRUDManagement\SecureCRUDFactoryService;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
*
|
||||||
* @todo Implement!
|
* @todo Implement!
|
||||||
*/
|
*/
|
||||||
class LawApiController extends AbstractAPIController
|
class LawApiController extends AbstractAPIController
|
||||||
|
@ -8,8 +8,8 @@ use Symfony\Component\HttpFoundation\Response;
|
|||||||
use App\Domain\SecureCRUDManagement\SecureCRUDFactoryService;
|
use App\Domain\SecureCRUDManagement\SecureCRUDFactoryService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
*
|
||||||
* @todo Implement!
|
* @todo Implement!
|
||||||
*/
|
*/
|
||||||
class MemberApiController extends AbstractAPIController
|
class MemberApiController extends AbstractAPIController
|
||||||
|
@ -8,8 +8,8 @@ use Symfony\Component\HttpFoundation\Response;
|
|||||||
use App\Domain\SecureCRUDManagement\SecureCRUDFactoryService;
|
use App\Domain\SecureCRUDManagement\SecureCRUDFactoryService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
*
|
||||||
* @todo Implement!
|
* @todo Implement!
|
||||||
*/
|
*/
|
||||||
class RightApiController extends AbstractAPIController
|
class RightApiController extends AbstractAPIController
|
||||||
|
@ -12,6 +12,7 @@ use App\Domain\SecureCRUDManagement\Create\SecureSourceCreatorInterface;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
*
|
||||||
* @todo Implement!
|
* @todo Implement!
|
||||||
*/
|
*/
|
||||||
class SourceApiController extends AbstractAPIController
|
class SourceApiController extends AbstractAPIController
|
||||||
|
@ -4,6 +4,7 @@ namespace App\Domain\SecureCRUDManagement;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
*
|
||||||
* @todo Implement!
|
* @todo Implement!
|
||||||
*/
|
*/
|
||||||
abstract class AbstractSecureCRUD implements SecureCRUDInterface
|
abstract class AbstractSecureCRUD implements SecureCRUDInterface
|
||||||
|
@ -4,6 +4,7 @@ namespace App\Domain\SecureCRUDManagement\Create;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
*
|
||||||
* @todo Implement!
|
* @todo Implement!
|
||||||
*/
|
*/
|
||||||
abstract class AbstractSecureCreator implements SecureCreatorInterface
|
abstract class AbstractSecureCreator implements SecureCreatorInterface
|
||||||
|
@ -7,8 +7,8 @@ use App\Entity\EntityInterface;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @todo Implement!
|
* @todo Implement!
|
||||||
* @author kevinfrantz
|
|
||||||
*
|
*
|
||||||
|
* @author kevinfrantz
|
||||||
*/
|
*/
|
||||||
interface SecureCreatorInterface extends SecureCRUDInterface
|
interface SecureCreatorInterface extends SecureCRUDInterface
|
||||||
{
|
{
|
||||||
|
@ -4,6 +4,7 @@ namespace App\Domain\SecureCRUDManagement\Create;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
*
|
||||||
* @todo Implement!
|
* @todo Implement!
|
||||||
*/
|
*/
|
||||||
interface SecureSourceCreatorInterface extends SecureCreatorInterface
|
interface SecureSourceCreatorInterface extends SecureCreatorInterface
|
||||||
|
@ -9,8 +9,8 @@ use Symfony\Component\Security\Core\Security;
|
|||||||
use Symfony\Component\HttpFoundation\RequestStack;
|
use Symfony\Component\HttpFoundation\RequestStack;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
|
*
|
||||||
* @todo Implement!
|
* @todo Implement!
|
||||||
* @todo substitute through child classes!
|
* @todo substitute through child classes!
|
||||||
*/
|
*/
|
||||||
|
@ -4,8 +4,8 @@ namespace App\Domain\SecureCRUDManagement;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @todo Implement!
|
* @todo Implement!
|
||||||
* @author kevinfrantz
|
|
||||||
*
|
*
|
||||||
|
* @author kevinfrantz
|
||||||
*/
|
*/
|
||||||
interface SecureCRUDInterface
|
interface SecureCRUDInterface
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user