From 7e541cac211ee5f05b4f50e6be993bc75751a688 Mon Sep 17 00:00:00 2001 From: GRandFather Date: Thu, 10 Nov 2022 16:39:30 +0100 Subject: [PATCH] fix: missing process call --- core/state-processors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state-processors.md b/core/state-processors.md index 30ddf8a6124..12bab4a8678 100644 --- a/core/state-processors.md +++ b/core/state-processors.md @@ -109,7 +109,7 @@ final class UserProcessor implements ProcessorInterface public function process($data, Operation $operation, array $uriVariables = [], array $context = []) { if ($operation instanceof DeleteOperationInterface) { - return $this->removeProcessor($data, $operation, $uriVariables, $context); + return $this->removeProcessor->process($data, $operation, $uriVariables, $context); } $result = $this->persistProcessor->process($data, $operation, $uriVariables, $context);