Skip to content

Commit 15531a2

Browse files
xmlclaude
andauthored
fix: correct typo in GoneException message (#61)
"not longer" → "no longer" in the error message shown when a deactivated operation is invoked. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b854088 commit 15531a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Service/Action/Invoker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function invoke(RequestInterface $request, Context $context): mixed
5050
$costs = $operation->getCosts();
5151

5252
if ($operation->getActive() === 0) {
53-
throw new StatusCode\GoneException('This action is not longer available');
53+
throw new StatusCode\GoneException('This action is no longer available');
5454
}
5555

5656
$baseUrl = $this->frameworkConfig->getDispatchUrl();

0 commit comments

Comments
 (0)