mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-08-21 19:25:03 +02:00
22 lines
454 B
PHP
22 lines
454 B
PHP
<?php
|
|
|
|
namespace App\Domain\SecureCRUDManagement\CRUD\Read;
|
|
|
|
use App\Entity\EntityInterface;
|
|
use App\Entity\Meta\RightInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
final class SecureRightReadService extends AbstractSecureReadService
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @see \App\Domain\SecureCRUDManagement\CRUD\Read\SecureReadServiceInterface::read()
|
|
*/
|
|
public function read(RightInterface $requestedRight): EntityInterface
|
|
{
|
|
}
|
|
}
|