From 037efa206330ee10ba44845fa3d9e781401c1439 Mon Sep 17 00:00:00 2001 From: Maxcastel Date: Tue, 30 Dec 2025 19:01:30 +0100 Subject: [PATCH] fix(state): _api_operation_nme to _api_operation_name in ErrorProvider --- src/State/ErrorProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/State/ErrorProvider.php b/src/State/ErrorProvider.php index a6ebb62426f..d8e13853d0a 100644 --- a/src/State/ErrorProvider.php +++ b/src/State/ErrorProvider.php @@ -50,7 +50,7 @@ public function provide(Operation $operation, array $uriVariables = [], array $c foreach ($resource->getOperations() as $name => $operation) { if (isset($operation->getOutputFormats()[$request->getRequestFormat()])) { $request->attributes->set('_api_operation', $operation); - $request->attributes->set('_api_operation_nme', $name); + $request->attributes->set('_api_operation_name', $name); break 2; } }