Skip to content

Commit

Permalink
Add missing typehint to explainOraclePlatform
Browse files Browse the repository at this point in the history
Fixes build
  • Loading branch information
ostrolucky committed Nov 7, 2020
1 parent be1a1d3 commit c1b1fe9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Controller/ProfilerController.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,10 @@ private function explainOtherPlatform(Connection $connection, string $query): ar

/**
* @param mixed[] $query
*
* @return mixed[]
*/
private function explainOraclePlatform(Connection $connection, array $query)
private function explainOraclePlatform(Connection $connection, array $query): array
{
$connection->executeQuery('EXPLAIN PLAN FOR ' . $query['sql']);

Expand Down

0 comments on commit c1b1fe9

Please sign in to comment.