We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 380b7aa commit b835fb0Copy full SHA for b835fb0
src/Kitar/Dynamodb/Query/Processor.php
@@ -33,6 +33,14 @@ protected function unmarshal(Result $res)
33
$responseArray['Attributes'] = $this->marshaler->unmarshalItem($responseArray['Attributes']);
34
}
35
36
+ if (! empty($responseArray['Responses'])) {
37
+ foreach ($responseArray['Responses'] as &$items) {
38
+ foreach ($items as &$item) {
39
+ $item = $this->marshaler->unmarshalItem($item);
40
+ }
41
42
43
+
44
return $responseArray;
45
46
0 commit comments