Skip to content

Commit 8892727

Browse files
committed
B2B-2658: Implement GraphQL Resolver Cache for Customer query
- CR fixes (type hint and inline comments)
1 parent 896abf9 commit 8892727

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/GraphQlResolverCache/Model/Resolver/Result/ValueProcessorInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ public function processCachedValueAfterLoad(ResolverInterface $resolver, string
2727
/**
2828
* Preprocess parent resolver resolved array for currently executed resolver.
2929
*
30-
* @param array|null $value
30+
* @param array $value
3131
* @return void
3232
*/
33-
public function preProcessParentValue(?array &$value): void;
33+
public function preProcessParentValue(array &$value): void;
3434

3535
/**
3636
* Preprocess value before saving to cache for the given resolver.

0 commit comments

Comments
 (0)