Skip to content

Commit ffef094

Browse files
authored
doc(mutator): fix typo (#2234)
Invert null check for operations in __invoke method
1 parent 68dfcfe commit ffef094

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ final readonly class ApiPrefixMutator implements ResourceMutatorInterface
647647
{
648648
$operations = $resource->getOperations();
649649

650-
if (null !== $operations) {
650+
if (null === $operations) {
651651
return $resource;
652652
}
653653

0 commit comments

Comments
 (0)