Skip to content

Commit abb6342

Browse files
committed
fix psr2 style issue
1 parent b4f30fa commit abb6342

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Functional/Command/IndexExportCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function testIndexExport(array $options, array $expectedResults)
8888
);
8989

9090
$results = $this->parseResult(vfsStream::url('tmp/test.json'), count($expectedResults));
91-
usort($results, function ($a, $b){
91+
usort($results, function ($a, $b) {
9292
return (int)$a['_id'] <=> (int)$b['_id'];
9393
});
9494
$this->assertEquals($expectedResults, $results);

0 commit comments

Comments
 (0)