Skip to content

Commit bbf9115

Browse files
committed
cs fixes on arrays
1 parent a4b34d0 commit bbf9115

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Collector/QueryLogger.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function finish(StatementResultInterface $statementResult)
7676
$this->statements[$idx] = array_merge($this->statements[$idx], [
7777
'end_time' => microtime(true) * 1000,
7878
'nb_results' => $statementResult->size(),
79-
'statistics' => $this->statisticsToArray($statementResult->summarize()->updateStatistics())
79+
'statistics' => $this->statisticsToArray($statementResult->summarize()->updateStatistics()),
8080
]);
8181
}
8282

@@ -136,7 +136,7 @@ private function statisticsToArray(StatementStatisticsInterface $statementStatis
136136
'indexes_added' => $statementStatistics->indexesAdded(),
137137
'indexes_removed' => $statementStatistics->indexesRemoved(),
138138
'constraints_added' => $statementStatistics->constraintsAdded(),
139-
'constraints_removed' => $statementStatistics->constraintsRemoved()
139+
'constraints_removed' => $statementStatistics->constraintsRemoved(),
140140
];
141141

142142
return $data;

0 commit comments

Comments
 (0)