From 9575055a9723c2b4c18ced90dd4bb973f1f5e3bf Mon Sep 17 00:00:00 2001 From: Manuel Aranda Date: Fri, 5 Sep 2025 09:14:32 +0200 Subject: [PATCH] Updated typo --- src/State/Processor/PartitionProcessor.php | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/State/Processor/PartitionProcessor.php b/src/State/Processor/PartitionProcessor.php index 029857a..e29494e 100644 --- a/src/State/Processor/PartitionProcessor.php +++ b/src/State/Processor/PartitionProcessor.php @@ -10,16 +10,8 @@ use ApiPlatform\Metadata\Put; use ApiPlatform\State\ProcessorInterface; use ApiPlatform\Validator\ValidatorInterface; use App\Controller\OgAgent\PartitionAssistantAction; -use App\Dto\Input\MenuInput; -use App\Dto\Input\PartitionInput; use App\Dto\Input\PartitionPostInput; -use App\Dto\Input\UserGroupInput; -use App\Dto\Output\MenuOutput; -use App\Dto\Output\PartitionOutput; -use App\Dto\Output\UserGroupOutput; -use App\Repository\MenuRepository; use App\Repository\PartitionRepository; -use App\Repository\UserGroupRepository; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\Response; @@ -82,7 +74,7 @@ readonly class PartitionProcessor implements ProcessorInterface return new JsonResponse($jsonString, Response::HTTP_OK, [], true); } - return new JsonResponse(data: ['/clients/' . $image->getClient()->getUuid() => ['headers' => []]], status: Response::HTTP_OK); + return new JsonResponse(data: ['/clients/' . '' => ['headers' => []]], status: Response::HTTP_OK); } private function processDelete($data, Operation $operation, array $uriVariables = [], array $context = []): null