mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 02:06:23 +02:00
18 lines
390 B
PHP
18 lines
390 B
PHP
<?php
|
|
|
|
namespace App\Domain\SecureCRUDManagement\Factory;
|
|
|
|
use App\Entity\Meta\RightInterface;
|
|
use App\Domain\SecureCRUDManagement\CRUD\SecureCRUDServiceInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface SecureCRUDFactoryServiceInterface
|
|
{
|
|
/**
|
|
* @return SecureCRUDServiceInterface
|
|
*/
|
|
public function create(RightInterface $requestedRight): SecureCRUDServiceInterface;
|
|
}
|