From 0e5a5d4fcea1dbd6f9f373b55080743f4a32d373 Mon Sep 17 00:00:00 2001 From: Hubert Lenoir Date: Tue, 16 Dec 2025 14:58:10 +0100 Subject: [PATCH] doc(mutator): fix typo Invert null check for operations in __invoke method --- core/operations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/operations.md b/core/operations.md index 1224f1e3e52..8849678ae7b 100644 --- a/core/operations.md +++ b/core/operations.md @@ -647,7 +647,7 @@ final readonly class ApiPrefixMutator implements ResourceMutatorInterface { $operations = $resource->getOperations(); - if (null !== $operations) { + if (null === $operations) { return $resource; }