Skip to content

Commit

Permalink
style(storage): Fix PHPCS issue
Browse files Browse the repository at this point in the history
  • Loading branch information
zlodes committed Oct 15, 2023
1 parent 3461da9 commit 9e0f4ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/Testing/SummaryStorageTesting.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function testFullCycle(): void
assertCount(3, $fetched);

// sort fetched values to have predictable order
usort($fetched, static function (SummaryMetricValue $a, SummaryMetricValue $b) {
usort($fetched, static function (SummaryMetricValue $a, SummaryMetricValue $b) {
$keyA = $a->metricNameWithLabels->metricName . ':' . serialize($a->metricNameWithLabels->labels);
$keyB = $b->metricNameWithLabels->metricName . ':' . serialize($b->metricNameWithLabels->labels);

Expand Down

0 comments on commit 9e0f4ab

Please sign in to comment.