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 e614df3 commit 53eb761Copy full SHA for 53eb761
src/Formatter/Specialised/HttpOGMArrayTranslator.php
@@ -81,7 +81,8 @@ private function translateCypherList(array $value): CypherList
81
// We need to use JOLT instead for finer control,
82
// which will be a different translator.
83
if (is_array($x)) {
84
- $tbr->push($this->translateContainer($value));
+ /** @var array<array-key, array|null|scalar> $x */
85
+ $tbr->push($this->translateContainer($x));
86
} else {
87
$tbr->push($x);
88
}
0 commit comments