Skip to content

Commit 76f9ce6

Browse files
committed
fix: phpcs warnings
1 parent f0c4de3 commit 76f9ce6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/DataCollector/DoctrineDataCollector.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
use Throwable;
1919

2020
use function array_map;
21+
use function array_merge;
2122
use function array_sum;
2223
use function arsort;
2324
use function assert;
@@ -317,10 +318,7 @@ public function getGroupedQueries(): array
317318
}
318319
}
319320

320-
$groupedQueries = $this->groupedQueries;
321-
/** @var GroupedQueriesType $groupedQueries */
322-
323-
return $groupedQueries;
321+
return $this->groupedQueries;
324322
}
325323

326324
private function executionTimePercentage(float $executionTimeMS, float $totalExecutionTimeMS): float

0 commit comments

Comments
 (0)