Skip to content

Commit 4360902

Browse files
committed
cs:fix
1 parent 7024b51 commit 4360902

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Helper/ToCypherHelper.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,7 @@ public static function optionStorageToCypherString(OptionStorageInterface $optio
349349
}
350350

351351
$optionStringParts = implode(', ', $optionStringParts);
352+
352353
return sprintf("{%s}", $optionStringParts);
353354
}
354355
}

tests/Helper/ToCypherHelperTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ public function valueToStringProvider(): array
154154
$optionStorage = new OptionStorage();
155155
$optionStorage->attach(new OptionName('indexConfig'), $indexConfig);
156156

157-
158157
return [
159158
[null, 'null'],
160159
[true, 'true'],
@@ -168,7 +167,7 @@ public function valueToStringProvider(): array
168167
[[1, 3, 2], '[1, 2, 3]'],
169168
[[0, null, 'hi', 'abc'], "[0, null, 'abc', 'hi']"],
170169
[new OptionName('someOption'), 'someOption'],
171-
[$optionStorage, '{indexConfig: {`spatial.cartesian.max`: [100, 100], `spatial.cartesian.min`: [-100, -100]}}']
170+
[$optionStorage, '{indexConfig: {`spatial.cartesian.max`: [100, 100], `spatial.cartesian.min`: [-100, -100]}}'],
172171
];
173172
}
174173

0 commit comments

Comments
 (0)