Skip to content

Commit 91baf6b

Browse files
authored
fix: missing process call (#1650)
1 parent 4baca0f commit 91baf6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/state-processors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ final class UserProcessor implements ProcessorInterface
109109
public function process($data, Operation $operation, array $uriVariables = [], array $context = [])
110110
{
111111
if ($operation instanceof DeleteOperationInterface) {
112-
return $this->removeProcessor($data, $operation, $uriVariables, $context);
112+
return $this->removeProcessor->process($data, $operation, $uriVariables, $context);
113113
}
114114

115115
$result = $this->persistProcessor->process($data, $operation, $uriVariables, $context);

0 commit comments

Comments
 (0)